{ "compilerOptions": { "incremental": true, "target": "es2021", "emitDecoratorMetadata": true, "experimentalDecorators": true, "baseUrl": ".", "module": "CommonJS", "paths": { "@test/*": ["./test/*"], "@server/*": ["../../apps/server/src/*"] }, "resolveJsonModule": true, "types": ["vitest/globals"], "strictBindCallApply": true, "strictFunctionTypes": true, "strictNullChecks": true, "noImplicitAny": false, "declaration": true, "outDir": "./dist", "removeComments": true, "sourceMap": true, "allowSyntheticDefaultImports": true, "esModuleInterop": true, "skipLibCheck": true }, "exclude": ["node_modules", "dist"] }