aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tsconfig.node.json
diff options
context:
space:
mode:
authorLofiSu <163713803+LofiSu@users.noreply.github.com>2025-01-26 04:16:45 +0000
committerLofiSu <163713803+LofiSu@users.noreply.github.com>2025-01-26 04:16:45 +0000
commit2a65ec749b0b1974b757ecf175b3d638d1025aef (patch)
tree1809c5cf959cbe35780ef5ad1be4219d6fdcc51d /tsconfig.node.json
parentf682d264df77d58620991e53eefabbef436d2179 (diff)
downloadHydroRollSite-2a65ec749b0b1974b757ecf175b3d638d1025aef.tar.gz
HydroRollSite-2a65ec749b0b1974b757ecf175b3d638d1025aef.zip
cli
Diffstat (limited to 'tsconfig.node.json')
-rw-r--r--tsconfig.node.json24
1 files changed, 24 insertions, 0 deletions
diff --git a/tsconfig.node.json b/tsconfig.node.json
new file mode 100644
index 0000000..db0becc
--- /dev/null
+++ b/tsconfig.node.json
@@ -0,0 +1,24 @@
+{
+ "compilerOptions": {
+ "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
+ "target": "ES2022",
+ "lib": ["ES2023"],
+ "module": "ESNext",
+ "skipLibCheck": true,
+
+ /* Bundler mode */
+ "moduleResolution": "bundler",
+ "allowImportingTsExtensions": true,
+ "isolatedModules": true,
+ "moduleDetection": "force",
+ "noEmit": true,
+
+ /* Linting */
+ "strict": true,
+ "noUnusedLocals": true,
+ "noUnusedParameters": true,
+ "noFallthroughCasesInSwitch": true,
+ "noUncheckedSideEffectImports": true
+ },
+ "include": ["vite.config.ts"]
+}