Files
trailbase/examples/data-cli-tutorial/tsconfig.json
Sebastian Jeltsch c3a81d7359 Clean up examples and tutorials as well as minor doc tweaks.
Also add a reconnect loop to collab clicker.
2025-01-24 14:26:16 +01:00

23 lines
476 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-core/bindings/*"]
}
},
"include": ["src/**/*"],
"exclude": [
"dist",
"node_modules"
]
}