mirror of
https://github.com/reonokiy/blog.nokiy.net.git
synced 2025-06-15 19:22:52 +02:00
17 lines
299 B
JSON
17 lines
299 B
JSON
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"compilerOptions": {
|
|
"lib": ["ESNext", "DOM"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"allowJs": false,
|
|
"strictNullChecks": true
|
|
},
|
|
"include": [
|
|
".astro/types.d.ts",
|
|
"src/**/*"
|
|
],
|
|
"exclude": ["dist"]
|
|
}
|