diff options
| author | Thomas Grothe <grothe.tr@gmail.com> | 2026-04-30 00:36:17 -0400 |
|---|---|---|
| committer | Thomas Grothe <grothe.tr@gmail.com> | 2026-04-30 00:36:17 -0400 |
| commit | dd886585cb9a34af6e6dda24dcfabc8132fdebb1 (patch) | |
| tree | eb7be0922bf57fc3fe4a644f65cf212e0cdaa07b /tsconfig.json | |
| parent | 60553f2103ca58405798be7f7d17153f49c2ac7a (diff) | |
Diffstat (limited to 'tsconfig.json')
| -rw-r--r-- | tsconfig.json | 20 |
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"] +} |
