portfolio-webpage/tsconfig.json

15 lines
364 B
JSON
Raw Permalink Normal View History

2024-04-04 22:08:06 +02:00
{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"strictNullChecks": true,
"baseUrl": ".",
"paths": {
"@*": ["src/*"]
},
"jsx": "preserve",
"jsxImportSource": "solid-js"
},
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.astro"],
"exclude": ["dist", "node_modules"]
}