1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-27 08:21:03 +02:00

Tools: Disable tsc compile when committing - too slow

This commit is contained in:
Laurent Cozic 2021-01-07 22:10:35 +00:00
parent ccf5271584
commit b1908756d4

View File

@ -1,5 +1,15 @@
module.exports = {
'**/*.ts?(x)': () => 'npm run tsc',
// Don't compile when committing as it will process all TS files in the
// monorepo, which is too slow. Errors should be checked during development
// using `npm run watch`.
//
// Or if we add this back, we could do something like this:
// https://stackoverflow.com/a/44748041/561309
//
// The script would check where the TS file is located, then use the right
// tsconfig.json file along with the tsconfig override.
//
// '**/*.ts?(x)': () => 'npm run tsc',
'*.{js,jsx,ts,tsx}': [
'npm run linter-precommit',
'git add',