Files
trailbase/docs/tsconfig.json
Sebastian Jeltsch 8f9d8ada9c Improve RecordApi docs by adding code examples (only Dart for now) and fix a small heartbeat decoding issue.
Partially addresses some of the issues with our lackluster docs: #22.
2025-01-20 13:08:31 +01:00

20 lines
362 B
JSON

{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"jsx": "preserve",
"jsxImportSource": "solid-js",
"baseUrl": "./",
"paths": {
"@/*": ["./src/*"],
"@assets/*": ["../assets/*"],
"@examples/*": ["./examples/*"],
"@root/*": ["../*"]
}
},
"exclude": [
"dist",
"node_modules",
"public"
]
}