summaryrefslogtreecommitdiff
path: root/tsconfig.node.json
diff options
context:
space:
mode:
authorElizabeth Hunt <me@liz.coffee>2025-10-04 16:53:25 -0700
committerElizabeth Hunt <me@liz.coffee>2025-10-04 16:53:25 -0700
commitc2503078307759860736b4467507abf1e68c326d (patch)
tree1c29e78c763abf312cfaa7e78edd9294cf28aa20 /tsconfig.node.json
downloadansicolor-c2503078307759860736b4467507abf1e68c326d.tar.gz
ansicolor-c2503078307759860736b4467507abf1e68c326d.zip
Initial commit
Diffstat (limited to 'tsconfig.node.json')
-rw-r--r--tsconfig.node.json26
1 files changed, 26 insertions, 0 deletions
diff --git a/tsconfig.node.json b/tsconfig.node.json
new file mode 100644
index 0000000..8a67f62
--- /dev/null
+++ b/tsconfig.node.json
@@ -0,0 +1,26 @@
+{
+ "compilerOptions": {
+ "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
+ "target": "ES2023",
+ "lib": ["ES2023"],
+ "module": "ESNext",
+ "types": ["node"],
+ "skipLibCheck": true,
+
+ /* Bundler mode */
+ "moduleResolution": "bundler",
+ "allowImportingTsExtensions": true,
+ "verbatimModuleSyntax": true,
+ "moduleDetection": "force",
+ "noEmit": true,
+
+ /* Linting */
+ "strict": true,
+ "noUnusedLocals": true,
+ "noUnusedParameters": true,
+ "erasableSyntaxOnly": true,
+ "noFallthroughCasesInSwitch": true,
+ "noUncheckedSideEffectImports": true
+ },
+ "include": ["vite.config.ts"]
+}