aboutsummaryrefslogtreecommitdiffstats
path: root/frontend-vanilla/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'frontend-vanilla/tsconfig.json')
-rw-r--r--frontend-vanilla/tsconfig.json26
1 files changed, 26 insertions, 0 deletions
diff --git a/frontend-vanilla/tsconfig.json b/frontend-vanilla/tsconfig.json
new file mode 100644
index 0000000..4ba8dd9
--- /dev/null
+++ b/frontend-vanilla/tsconfig.json
@@ -0,0 +1,26 @@
+{
+ "compilerOptions": {
+ "target": "ES2022",
+ "useDefineForClassFields": true,
+ "module": "ESNext",
+ "lib": ["ES2022", "DOM", "DOM.Iterable"],
+ "types": ["vite/client"],
+ "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": ["src"]
+}