22 lines
343 B
JSON
22 lines
343 B
JSON
{
|
|
"extends": "astro/tsconfigs/base",
|
|
"compilerOptions": {
|
|
"strictNullChecks": true,
|
|
"allowJs": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": [
|
|
"./src/*"
|
|
]
|
|
},
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "react"
|
|
},
|
|
"include": [
|
|
".astro/types.d.ts",
|
|
"**/*"
|
|
],
|
|
"exclude": [
|
|
"dist"
|
|
]
|
|
} |