diff options
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/tsconfig.json b/tsconfig.json index 927f459..291a04f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,12 +1,13 @@ { "compilerOptions": { - "module": "ESNext", - "lib": ["esnext", "dom", "DOM.Iterable"], - "target": "ESNext", - "esModuleInterop": true, - "outDir": "build", - "strictNullChecks": true, - "moduleResolution": "node" + "module": "ESNext", + "lib": ["esnext", "dom", "DOM.Iterable"], + "target": "ESNext", + "esModuleInterop": true, + "outDir": "build", + "strictNullChecks": true, + "moduleResolution": "node", + "incremental": true }, "include": ["src"], "exclude": ["**/node_modules"], |