template-desktop/tsconfig.json

23 lines
373 B
JSON

{
"extends": "./node_modules/astro/tsconfigs/strictest.json",
"include": [
".astro/types.d.ts",
"**/*",
"src/config/types.d.ts"
],
"exclude": [
"dist",
"cypress"
],
"compilerOptions": {
"baseUrl": "src",
"experimentalDecorators": true,
"allowJs": true,
// hide an issue with typescript
"noUnusedLocals": false
},
"ts-node": {
"esm": true
}
}