SplatNet/tsconfig.json

19 lines
269 B
JSON
Raw Permalink Normal View History

2026-08-12 06:03:57 +02:00
{
"extends": "astro/tsconfigs/strict",
"include": [
".astro/types.d.ts",
"**/*"
],
"exclude": [
"dist"
],
"compilerOptions": {
"ignoreDeprecations": "6.0",
"baseUrl": ".",
"paths": {
"~/*": [
"src/*"
]
}
}
}