aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2021-12-30 16:21:47 -0600
committermat <github@matdoes.dev>2021-12-30 16:21:47 -0600
commit12cdbf6ab76afc2f6910908c1383aa094a9848ec (patch)
treebd500b98da50a2e49d25bf138c16d8dcde13b0d6 /tsconfig.json
parent342d31e99d1fbd7bcc941e34bb2a175382f3e26e (diff)
downloadskyblock-api-12cdbf6ab76afc2f6910908c1383aa094a9848ec.tar.gz
skyblock-api-12cdbf6ab76afc2f6910908c1383aa094a9848ec.tar.bz2
skyblock-api-12cdbf6ab76afc2f6910908c1383aa094a9848ec.zip
add incremental compiler option
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json15
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"],