mirror of
https://github.com/trailbaseio/trailbase.git
synced 2026-01-04 00:29:44 -06:00
This is only to avoid accidentally leaking any secrets from early development especially in the light of short-sha attacks.
19 lines
335 B
JSON
19 lines
335 B
JSON
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"compilerOptions": {
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "solid-js",
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@assets/*": ["../assets/*"],
|
|
"@common/*": ["../ui/common/*"]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules",
|
|
"public"
|
|
]
|
|
}
|