scoresaber-reloadedv3/projects/common/tsconfig.json

19 lines
441 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", "dist"]
}