scoresaber-reloadedv3/projects/common/tsconfig.json

21 lines
512 B
JSON
Raw Normal View History

2024-10-04 19:35:44 +00:00
{
"compilerOptions": {
2024-10-08 14:32:02 +00:00
"module": "ES2022",
"target": "ES2022",
2024-10-09 00:17:00 +00:00
"outDir": "./dist",
2024-10-04 21:21:37 +00:00
"declaration": true,
2024-10-09 00:17:00 +00:00
"moduleResolution": "node",
"skipLibCheck": true,
2024-10-04 21:21:37 +00:00
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
2024-10-09 00:17:00 +00:00
"strict": true,
2024-10-04 21:21:37 +00:00
"baseUrl": "./",
2024-10-09 00:17:00 +00:00
"paths": {
"@ssr/*": ["dist/*"] // This is crucial for resolving the imports correctly
}
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules", "dist"]
2024-10-04 19:35:44 +00:00
}