scoresaber-reloadedv3/projects/common/tsconfig.json
Liam b3c124631a
Some checks failed
Deploy Backend / deploy (push) Successful in 2m26s
Deploy Website / deploy (push) Failing after 1m52s
move score page fetching to the backend
2024-10-17 15:30:14 +01:00

21 lines
512 B
JSON

{
"compilerOptions": {
"module": "ES2022",
"target": "ES2022",
"outDir": "./dist",
"declaration": true,
"moduleResolution": "node",
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"strict": true,
"baseUrl": "./",
"paths": {
"@ssr/*": ["dist/*"] // This is crucial for resolving the imports correctly
}
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules", "dist"]
}