mirror of
https://github.com/trailbaseio/trailbase.git
synced 2026-01-02 07:39:50 -06:00
20 lines
362 B
JSON
20 lines
362 B
JSON
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"compilerOptions": {
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "solid-js",
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@assets/*": ["../assets/*"],
|
|
"@examples/*": ["./examples/*"],
|
|
"@root/*": ["../*"]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules",
|
|
"public"
|
|
]
|
|
}
|