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