use incremental
build mode for tsc
This commit is contained in:
parent
529dd1a3cc
commit
6df82867a0
2 changed files with 3 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -15,6 +15,7 @@ release/
|
|||
/sql/
|
||||
/start.sh
|
||||
.eslintcache
|
||||
tsconfig.tsbuildinfo
|
||||
|
||||
# generated files
|
||||
js/components.js
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
"dom", // Required to access `window`
|
||||
"es2017" // Required by `@sindresorhus/is`
|
||||
],
|
||||
"incremental": true,
|
||||
// "allowJs": true, // Allow javascript files to be compiled.
|
||||
// "checkJs": true, // Report errors in .js files.
|
||||
"jsx": "react", // Specify JSX code generation: 'preserve', 'react-native', or 'react'.
|
||||
|
@ -15,7 +16,7 @@
|
|||
// "sourceMap": true, // Generates corresponding '.map' file.
|
||||
// "outFile": "./", // Concatenate and emit output to single file.
|
||||
// "outDir": "./", // Redirect output structure to the directory.
|
||||
"rootDir": "./ts", // Specify the root directory of input files. Use to control the output directory structure with --outDir.
|
||||
"rootDir": "./", // Specify the root directory of input files. Use to control the output directory structure with --outDir.
|
||||
// "removeComments": true, // Do not emit comments to output.
|
||||
// "noEmit": true, // Do not emit outputs.
|
||||
// "importHelpers": true, // Import emit helpers from 'tslib'.
|
||||
|
|
Loading…
Reference in a new issue