summaryrefslogtreecommitdiffhomepage
path: root/tsconfig.app.json
diff options
context:
space:
mode:
authorAdam Malczewski <[email protected]>2026-03-10 16:18:48 +0900
committerAdam Malczewski <[email protected]>2026-03-10 16:18:48 +0900
commite542742c0525ec0971eb89daaf3e8fc1b30e48fb (patch)
tree8dd9546e1af05832de8ca5bff1fd9165b0c5da39 /tsconfig.app.json
downloadtirecalc-e542742c0525ec0971eb89daaf3e8fc1b30e48fb.tar.gz
tirecalc-e542742c0525ec0971eb89daaf3e8fc1b30e48fb.zip
project init
Diffstat (limited to 'tsconfig.app.json')
-rw-r--r--tsconfig.app.json28
1 files changed, 28 insertions, 0 deletions
diff --git a/tsconfig.app.json b/tsconfig.app.json
new file mode 100644
index 0000000..a9b5a59
--- /dev/null
+++ b/tsconfig.app.json
@@ -0,0 +1,28 @@
+{
+ "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
+ },
+ "include": ["src"]
+}