dokploy/packages/server/tsconfig.server.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
}
}