generated from avior/template-web-astro
23 lines
373 B
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
|
|
}
|
|
}
|