summaryrefslogtreecommitdiff
path: root/web/tsconfig.json
diff options
context:
space:
mode:
authorJosh Kingsley <josh@joshkingsley.me>2025-10-25 20:46:35 +0300
committerJosh Kingsley <josh@joshkingsley.me>2025-10-25 22:09:48 +0300
commit5404a95c15e176d25728bf1a319ddb9828b23625 (patch)
tree639d175e15170618d36c0b22b3c8ad7764925175 /web/tsconfig.json
parent2a4d7a7fc3b968ed8cdfd958a5e65fbe140042da (diff)
refactor(web): re-organize files
Diffstat (limited to 'web/tsconfig.json')
-rw-r--r--web/tsconfig.json6
1 files changed, 3 insertions, 3 deletions
diff --git a/web/tsconfig.json b/web/tsconfig.json
index 7ef66ad..91be5ef 100644
--- a/web/tsconfig.json
+++ b/web/tsconfig.json
@@ -1,12 +1,12 @@
{
"compilerOptions": {
- "target": "ES2020",
+ "target": "ESNext",
"module": "ESNext",
- "lib": ["ES2020", "DOM", "DOM.Iterable"],
+ "lib": ["ESNext", "DOM", "DOM.Iterable"],
"moduleResolution": "bundler",
"strict": true,
"skipLibCheck": true,
"esModuleInterop": true
},
- "include": ["*.ts", "**/*.ts"]
+ "include": ["src/*.ts", "src/**/*.ts"]
}