summaryrefslogtreecommitdiff
path: root/tsconfig.node.json
diff options
context:
space:
mode:
Diffstat (limited to 'tsconfig.node.json')
-rw-r--r--tsconfig.node.json13
1 files changed, 8 insertions, 5 deletions
diff --git a/tsconfig.node.json b/tsconfig.node.json
index db0becc..9c06523 100644
--- a/tsconfig.node.json
+++ b/tsconfig.node.json
@@ -1,18 +1,19 @@
{
"compilerOptions": {
+ "incremental": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"target": "ES2022",
- "lib": ["ES2023"],
+ "lib": [
+ "ES2023"
+ ],
"module": "ESNext",
"skipLibCheck": true,
-
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
-
/* Linting */
"strict": true,
"noUnusedLocals": true,
@@ -20,5 +21,7 @@
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
},
- "include": ["vite.config.ts"]
-}
+ "include": [
+ "vite.config.ts"
+ ]
+} \ No newline at end of file