spotube/website/tsconfig.json
2025-08-15 21:06:33 +06:00

22 lines
351 B
JSON

{
"extends": "astro/tsconfigs/strict",
"include": [
".astro/types.d.ts",
"**/*"
],
"exclude": [
"dist"
],
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "react",
"paths": {
"~/*": [
"*"
],
},
"baseUrl": "./src",
"module": "node16",
"moduleResolution": "node16"
}
}