mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
19 lines
373 B
JSON
19 lines
373 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"outDir": "dist/",
|
|
"target": "ESNext",
|
|
"isolatedModules": false,
|
|
"noEmit": false,
|
|
"moduleResolution": "Node",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/server/*": ["./src/*"]
|
|
},
|
|
"jsx": "preserve",
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"exclude": ["**/dist", "tsup.ts"]
|
|
}
|