mirror of
https://github.com/trailbaseio/trailbase
synced 2026-04-21 21:47:55 +00:00
This is only to avoid accidentally leaking any secrets from early development especially in the light of short-sha attacks.
16 lines
324 B
JSON
16 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"
|
|
]
|
|
}
|