diff options
| author | Josh Kingsley <josh@joshkingsley.me> | 2025-10-25 20:46:35 +0300 |
|---|---|---|
| committer | Josh Kingsley <josh@joshkingsley.me> | 2025-10-25 22:09:48 +0300 |
| commit | 5404a95c15e176d25728bf1a319ddb9828b23625 (patch) | |
| tree | 639d175e15170618d36c0b22b3c8ad7764925175 /web/tsconfig.json | |
| parent | 2a4d7a7fc3b968ed8cdfd958a5e65fbe140042da (diff) | |
refactor(web): re-organize files
Diffstat (limited to 'web/tsconfig.json')
| -rw-r--r-- | web/tsconfig.json | 6 |
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"] } |
