18 lines
369 B
JSON
18 lines
369 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"outDir": "dist/server",
|
|
"rootDir": "src",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@shared/*": ["./src/shared/*"]
|
|
}
|
|
},
|
|
"include": ["src/server/**/*", "src/shared/**/*"]
|
|
}
|