summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorThomas Grothe <grothe.tr@gmail.com>2026-04-30 00:36:17 -0400
committerThomas Grothe <grothe.tr@gmail.com>2026-04-30 00:36:17 -0400
commitdd886585cb9a34af6e6dda24dcfabc8132fdebb1 (patch)
treeeb7be0922bf57fc3fe4a644f65cf212e0cdaa07b /tsconfig.json
parent60553f2103ca58405798be7f7d17153f49c2ac7a (diff)
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json20
1 files changed, 20 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..eead15c
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,20 @@
+{
+ "compilerOptions": {
+ "target": "ES2020",
+ "useDefineForClassFields": true,
+ "module": "ESNext",
+ "lib": ["ES2020", "DOM", "DOM.Iterable"],
+ "skipLibCheck": true,
+ "moduleResolution": "bundler",
+ "allowImportingTsExtensions": true,
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "noEmit": true,
+ "strict": true,
+ "noUnusedLocals": true,
+ "noUnusedParameters": true,
+ "noFallthroughCasesInSwitch": true,
+ "esModuleInterop": true
+ },
+ "include": ["src"]
+}