14 lines
274 B
JSON
14 lines
274 B
JSON
|
|
{
|
||
|
|
"extends": "astro/tsconfigs/strict",
|
||
|
|
"include": [".astro/types.d.ts", "**/*"],
|
||
|
|
"exclude": ["dist"],
|
||
|
|
"compilerOptions": {
|
||
|
|
"baseUrl": ".",
|
||
|
|
"paths": {
|
||
|
|
"@/*": ["./src/*"]
|
||
|
|
},
|
||
|
|
"experimentalDecorators": true,
|
||
|
|
"emitDecoratorMetadata": true
|
||
|
|
}
|
||
|
|
}
|