17 lines
368 B
JSON
17 lines
368 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"outDir": "dist",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@shared/*": ["shared/*"]
|
|
}
|
|
},
|
|
"include": ["server", "shared"],
|
|
"exclude": ["node_modules", "dist", "client"]
|
|
}
|