summaryrefslogtreecommitdiff
path: root/tsconfig.app.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.app.json
downloadansicolor-c2503078307759860736b4467507abf1e68c326d.tar.gz
ansicolor-c2503078307759860736b4467507abf1e68c326d.zip
Initial commit
Diffstat (limited to 'tsconfig.app.json')
-rw-r--r--tsconfig.app.json33
1 files changed, 33 insertions, 0 deletions
diff --git a/tsconfig.app.json b/tsconfig.app.json
new file mode 100644
index 0000000..7c39281
--- /dev/null
+++ b/tsconfig.app.json
@@ -0,0 +1,33 @@
+{
+ "compilerOptions": {
+ "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
+ "target": "ES2022",
+ "useDefineForClassFields": true,
+ "lib": ["ES2022", "DOM", "DOM.Iterable"],
+ "module": "ESNext",
+ "types": ["vite/client"],
+ "skipLibCheck": true,
+
+ /* Bundler mode */
+ "moduleResolution": "bundler",
+ "allowImportingTsExtensions": true,
+ "verbatimModuleSyntax": true,
+ "moduleDetection": "force",
+ "noEmit": true,
+ "jsx": "react-jsx",
+
+ /* Linting */
+ "strict": true,
+ "noUnusedLocals": true,
+ "noUnusedParameters": true,
+ "erasableSyntaxOnly": true,
+ "noFallthroughCasesInSwitch": true,
+ "noUncheckedSideEffectImports": true,
+
+ "baseUrl": "src",
+ "paths": {
+ "@/*": ["*"]
+ }
+ },
+ "include": ["src"]
+}