portfolio-webpage/tsconfig.json

14 lines
343 B
JSON

{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"strictNullChecks": true,
"paths": {
"@/*": ["./src/*"]
},
"jsx": "preserve",
"jsxImportSource": "solid-js"
},
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.astro"],
"exclude": ["dist", "node_modules"]
}