diff options
| author | Josh Kingsley <josh@joshkingsley.me> | 2025-10-25 16:24:53 +0300 |
|---|---|---|
| committer | Josh Kingsley <josh@joshkingsley.me> | 2025-10-25 22:09:35 +0300 |
| commit | a658e571ef245a200884ea96198c54188ae650da (patch) | |
| tree | 636039604c7ccd84913c9f17a5a38bbbeb1c83b0 /web/tsconfig.json | |
| parent | 1e15fcceddfd2710c84fee0d68988a8eacce7453 (diff) | |
feat(web): setup components
Diffstat (limited to 'web/tsconfig.json')
| -rw-r--r-- | web/tsconfig.json | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/web/tsconfig.json b/web/tsconfig.json new file mode 100644 index 0000000..7ef66ad --- /dev/null +++ b/web/tsconfig.json @@ -0,0 +1,12 @@ +{ + "compilerOptions": { + "target": "ES2020", + "module": "ESNext", + "lib": ["ES2020", "DOM", "DOM.Iterable"], + "moduleResolution": "bundler", + "strict": true, + "skipLibCheck": true, + "esModuleInterop": true + }, + "include": ["*.ts", "**/*.ts"] +} |
