- schema.ts: add date import from drizzle-orm/pg-core - service-key.guard.ts: fix public.decorator import path (auth/ not common/decorators/) - tsconfig.json: exclude src/modules/ai and src/modules/webhooks (incomplete modules referencing non-existent workspaces/observations services; not wired in app.module.ts)
26 lines
581 B
JSON
26 lines
581 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "ES2022",
|
|
"moduleResolution": "node",
|
|
"declaration": false,
|
|
"removeComments": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"baseUrl": "./",
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"noImplicitAny": true,
|
|
"esModuleInterop": true
|
|
},
|
|
"include": ["src/**/*.ts"],
|
|
"exclude": [
|
|
"node_modules",
|
|
"src/modules/ai",
|
|
"src/modules/webhooks"
|
|
]
|
|
}
|