mirror of
https://github.com/trailbaseio/trailbase
synced 2026-04-21 21:47:55 +00:00
20 lines
412 B
JSON
20 lines
412 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"esModuleInterop": false,
|
|
"moduleResolution": "bundler",
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"declaration": true,
|
|
"outDir": "./dist",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@bindings/*": ["../bindings/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"./src/**/*"
|
|
]
|
|
}
|