diff options
| author | Yuval Adam <_@yuv.al> | 2025-03-05 14:23:25 +0100 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2025-03-05 14:23:25 +0100 |
| commit | dea263421b6b1d2ef3d60d09e7367d1736aed0a5 (patch) | |
| tree | 76ba93e9578428bdd300b070ee39042dd551eeb8 /tsconfig.node.json | |
| parent | 366c98d4a5a6d81f33c18f98957b9692cc3edaee (diff) | |
fix tsconfig
Diffstat (limited to 'tsconfig.node.json')
| -rw-r--r-- | tsconfig.node.json | 13 |
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 |
