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

12 lines
242 B
JSON
Raw Permalink Normal View History

2021-09-26 16:04:20 +02:00
{
"extends": "@tsconfig/svelte/tsconfig.json",
2021-09-26 21:02:02 +02:00
"target": "es2021",
2021-09-26 16:04:20 +02:00
"include": ["src/**/*"],
"exclude": ["src/pwa/**"],
2021-09-27 18:22:35 +02:00
"compilerOptions": {
2021-10-05 12:53:14 +02:00
"strict": true,
"isolatedModules": false,
"useDefineForClassFields": true
2021-09-27 18:22:35 +02:00
}
2021-09-26 16:04:20 +02:00
}