This repository has been archived on 2021-11-08. You can view files and clone it, but cannot push or open issues or pull requests.
svelte-sharg/tsconfig.json
Tobias Berger c6baf9b968
Some checks failed
continuous-integration/drone/push Build is failing
rename check script to type-check (yarn check is already a command)
fix tsconfig.json
fix pwa/service-worker.ts (svelte-check doesn't type `self` correctly)
2021-10-14 13:09:57 +02:00

11 lines
242 B
JSON

{
"extends": "@tsconfig/svelte/tsconfig.json",
"target": "es2021",
"include": ["src/**/*"],
"exclude": ["src/pwa/**"],
"compilerOptions": {
"strict": true,
"isolatedModules": false,
"useDefineForClassFields": true
}
}