trailbase/docs/tsconfig.json
2026-02-19 11:10:09 +01:00

15 lines
358 B
JSON

{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"jsx": "preserve",
"jsxImportSource": "solid-js",
"baseUrl": "./",
"paths": {
"@/*": ["./src/*"],
"@assets/*": ["../assets/*"],
"@examples/*": ["./examples/*"],
"@root/*": ["../*"]
}
},
"exclude": ["examples", "dist", "node_modules", "public"]
}