mirror-web/tsconfig.json

25 lines
348 B
JSON

{
"extends": "astro/tsconfigs/strict",
"include": [
".astro/types.d.ts",
"**/*"
],
"exclude": [
"dist"
],
"compilerOptions": {
"plugins": [
{
"name": "@astrojs/ts-plugin"
}
],
"verbatimModuleSyntax": true,
"baseUrl": ".",
"paths": {
"@/*": [
"src/*"
]
}
}
}