mirror of
https://github.com/dokploy/dokploy.git
synced 2026-06-13 19:09:49 +00:00
17 lines
328 B
JSON
17 lines
328 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"outDir": "dist/",
|
|
"target": "ESNext",
|
|
"isolatedModules": false,
|
|
"noEmit": false,
|
|
"moduleResolution": "Node",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./*"]
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "./server/**/*"]
|
|
}
|