mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
20 lines
422 B
JSON
20 lines
422 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"outDir": "dist/",
|
|
"target": "ESNext",
|
|
"isolatedModules": false,
|
|
"noEmit": false,
|
|
"declaration": true,
|
|
"moduleResolution": "Node",
|
|
"baseUrl": ".",
|
|
"incremental": false,
|
|
"paths": {
|
|
"@/server/*": ["src/*"]
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "./src/**/*"],
|
|
"exclude": ["**/dist", "tsup.ts"]
|
|
}
|