summaryrefslogtreecommitdiff
path: root/morsehero/tsconfig.app.json
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2025-03-05 09:22:48 +0100
committerYuval Adam <_@yuv.al>2025-03-05 09:22:48 +0100
commit0f187f792c264ba3d9e7de62b577fbfea0d86386 (patch)
tree0ec1d49062e0b562fe1d60f2c123d2d3927e60ff /morsehero/tsconfig.app.json
parent0f19e2f80ac7ac2f45310eab35e2af5e55f23de2 (diff)
Initial vite project
Diffstat (limited to 'morsehero/tsconfig.app.json')
-rw-r--r--morsehero/tsconfig.app.json26
1 files changed, 26 insertions, 0 deletions
diff --git a/morsehero/tsconfig.app.json b/morsehero/tsconfig.app.json
new file mode 100644
index 0000000..358ca9b
--- /dev/null
+++ b/morsehero/tsconfig.app.json
@@ -0,0 +1,26 @@
+{
+ "compilerOptions": {
+ "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
+ "target": "ES2020",
+ "useDefineForClassFields": true,
+ "lib": ["ES2020", "DOM", "DOM.Iterable"],
+ "module": "ESNext",
+ "skipLibCheck": true,
+
+ /* Bundler mode */
+ "moduleResolution": "bundler",
+ "allowImportingTsExtensions": true,
+ "isolatedModules": true,
+ "moduleDetection": "force",
+ "noEmit": true,
+ "jsx": "react-jsx",
+
+ /* Linting */
+ "strict": true,
+ "noUnusedLocals": true,
+ "noUnusedParameters": true,
+ "noFallthroughCasesInSwitch": true,
+ "noUncheckedSideEffectImports": true
+ },
+ "include": ["src"]
+}