mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +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/**/*"]
|
|
}
|