summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorElizabeth Hunt <me@liz.coffee>2025-12-14 16:14:29 -0800
committerElizabeth Hunt <me@liz.coffee>2025-12-14 16:17:29 -0800
commit8ec712c8c884110600954860c21f58107455cfdc (patch)
tree5e5b16ec8b0a1d15d58beae5bc8a7fd5285c6d0e /tsconfig.json
parentdb0d9b80b4412a46cae0e58997f4baa7213948e3 (diff)
downloadadelie-8ec712c8c884110600954860c21f58107455cfdc.tar.gz
adelie-8ec712c8c884110600954860c21f58107455cfdc.zip
Move to typescript
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json17
1 files changed, 17 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..cba458e
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,17 @@
+{
+ "compilerOptions": {
+ "target": "ES2020",
+ "module": "ESNext",
+ "lib": ["ES2020", "DOM"],
+ "declaration": false,
+ "sourceMap": true,
+ "strict": true,
+ "esModuleInterop": true,
+ "skipLibCheck": true,
+ "forceConsistentCasingInFileNames": true,
+ "moduleResolution": "node",
+ "resolveJsonModule": true
+ },
+ "include": ["src/**/*"],
+ "exclude": ["node_modules", "dist"]
+}