mirror of
https://github.com/trailbaseio/trailbase.git
synced 2026-01-13 21:30:25 -06:00
This is only to avoid accidentally leaking any secrets from early development especially in the light of short-sha attacks.
17 lines
324 B
JSON
17 lines
324 B
JSON
{
|
|
"extends": "../../../ui/common/tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@schema/*": ["./types/*"],
|
|
"@bindings/*": ["../../../trailbase-core/bindings/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules"
|
|
]
|
|
}
|