edtech / apps /api /tsconfig.json
CognxSafeTrack
feat: stabilize AI engine, harden Zod schemas, and implement UX guardrails
77c96f8
{
"extends": "@repo/tsconfig/base.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src",
"module": "CommonJS",
"moduleResolution": "node",
"noEmit": false,
"allowImportingTsExtensions": false,
"target": "ES2020",
"lib": [
"ES2020"
],
"types": [
"node"
],
"esModuleInterop": true,
"allowSyntheticDefaultImports": true
},
"include": [
"src/**/*"
]
}