scoresaber-reloadedv3/projects/common/tsconfig.json
Liam e87d73bbdf
Some checks failed
Deploy Website / deploy (push) Waiting to run
Deploy Backend / deploy (push) Has been cancelled
LETS GO BABY
2024-10-09 01:17:00 +01:00

19 lines
433 B
JSON

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