{ "exclude": [ ".git", "node_modules", "app/static", "app/web/static", ], "include": [ "app/srv/**/*", "app/web/**/*", "pkgs/**/*" ], "compilerOptions": { "lib": [ "ESNext" ], "module": "esnext", "target": "esnext", "moduleResolution": "bundler", "moduleDetection": "force", "allowImportingTsExtensions": true, "noEmit": true, "composite": true, "strict": true, "downlevelIteration": true, "skipLibCheck": true, "jsx": "react-jsx", "allowSyntheticDefaultImports": true, "forceConsistentCasingInFileNames": true, "allowJs": true, "paths": { "dir": [ "./pkgs/core/utils/dir.ts" ], "dbgen": [ "./node_modules/.prisma/client/index.d.ts" ], "service-srv": [ "./pkgs/core/server/api/api-ctx.ts" ], "utils/*": [ "./pkgs/core/utils/*" ] }, "types": [ "bun-types" // add Bun global ], }, }