27 lines
435 B
JSON
27 lines
435 B
JSON
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"include": [
|
|
".astro/types.d.ts",
|
|
"**/*",
|
|
"./worker-configuration.d.ts"
|
|
],
|
|
"compilerOptions": {
|
|
"paths": {
|
|
"$assets/*": [
|
|
"./src/assets/*"
|
|
],
|
|
"$components/*": [
|
|
"./src/components/*"
|
|
],
|
|
"$layouts/*": [
|
|
"./src/layouts/*"
|
|
],
|
|
"$lib/*": [
|
|
"./src/lib/*"
|
|
]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"dist"
|
|
]
|
|
} |