0
mirror of https://github.com/Hello9999901/laptop.git synced 2025-02-05 08:17:48 +00:00
bryan.ee_laptop/website/tsconfig.json
2024-07-11 00:54:48 -04:00

23 lines
367 B
JSON

{
"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"
]
}