19 lines
333 B
JSON
19 lines
333 B
JSON
{
|
|
"extends": "astro/tsconfigs/strictest",
|
|
"compilerOptions": {
|
|
"baseUrl": "./src",
|
|
"strict": true,
|
|
"paths": {
|
|
"@/*": ["./*"]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "@astrojs/ts-plugin"
|
|
}
|
|
],
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "solid-js"
|
|
},
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|