mirror of
https://github.com/trailbaseio/trailbase.git
synced 2025-12-31 14:49:44 -06:00
23 lines
478 B
JSON
23 lines
478 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"esModuleInterop": false,
|
|
"moduleResolution": "bundler",
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"noEmit": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@schema/*": ["./types/*"],
|
|
"@bindings/*": ["../../crates/assets/js/bindings/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules"
|
|
]
|
|
}
|