From 12cdbf6ab76afc2f6910908c1383aa094a9848ec Mon Sep 17 00:00:00 2001 From: mat Date: Thu, 30 Dec 2021 16:21:47 -0600 Subject: add incremental compiler option --- tsconfig.json | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'tsconfig.json') 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"], -- cgit