| { | |
| "extends": "./tsconfig.json", | |
| "compilerOptions": { | |
| "disableSizeLimit": true, | |
| "module": "ESNext", | |
| "outDir": "dist/", | |
| "target": "ESNext", | |
| "isolatedModules": false, | |
| "noEmit": false, | |
| "declaration": true, | |
| "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 | |
| } | |
| } | |