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