26 lines
360 B
JSON
26 lines
360 B
JSON
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"include": [
|
|
".astro/types.d.ts",
|
|
"**/*"
|
|
],
|
|
"exclude": [
|
|
"dist"
|
|
],
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": [
|
|
"src/*",
|
|
"components/*",
|
|
"assets/*"
|
|
]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "@astrojs/ts-plugin"
|
|
},
|
|
],
|
|
}
|
|
}
|