doesitarm/tsconfig.json
2025-02-10 19:31:47 -06:00

15 lines
308 B
JSON

{
"extends": "astro/tsconfigs/base",
"compilerOptions": {
"allowJs": true,
"baseUrl": ".",
"paths": {
"~/*": ["./*"],
"~helpers": ["./helpers/*"],
"~astro": ["./src/*"]
}
},
"exclude": [
"helpers/macho/*.js"
]
}