This repository has been archived on 2024-01-24. You can view files and clone it, but cannot push or open issues or pull requests.
discard/tsconfig.json
tezlm 00001593ab
Update tsconfig.json
- use esnext instead of es2022
- use incremental builds
2022-12-07 06:37:48 -08:00

9 lines
173 B
JSON

{
"extends": "@tsconfig/svelte",
"include": ["src/**/*"],
"exclude": ["node_modules/*"],
"compilerOptions": {
"target": "esnext",
"incremental": true,
}
}