Files
trailbase/examples/data-cli-tutorial/tsconfig.json
Sebastian Jeltsch 7b82eae58d Move ts-rs generated TS API bindings to trailbase-assets/js/bindings getting rid of the symlink.
Generally, symlinks continue to be an issue for Windows builds.
2025-05-15 11:24:51 +02:00

23 lines
481 B
JSON

{
"compilerOptions": {
"strict": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": false,
"moduleResolution": "bundler",
"target": "ESNext",
"module": "ESNext",
"noEmit": true,
"paths": {
"@/*": ["./src/*"],
"@schema/*": ["./types/*"],
"@bindings/*": ["../../trailbase-assets/js/bindings/*"]
}
},
"include": ["src/**/*"],
"exclude": [
"dist",
"node_modules"
]
}