From 6833f7489102e6bb0a13cfa8b8b7a116d658282d Mon Sep 17 00:00:00 2001 From: Elizabeth Hunt Date: Sun, 7 Dec 2025 14:29:50 -0800 Subject: Fix model build --- model/tsconfig.json | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) (limited to 'model/tsconfig.json') diff --git a/model/tsconfig.json b/model/tsconfig.json index 98e457c..b243305 100644 --- a/model/tsconfig.json +++ b/model/tsconfig.json @@ -1,13 +1,30 @@ { - "extends": "../tsconfig.json", "compilerOptions": { + "target": "ES2022", + "module": "ESNext", + "lib": ["ES2022"], + "moduleResolution": "node", "outDir": "./dist", "rootDir": "./", "composite": true, "declaration": true, "declarationMap": true, "sourceMap": true, - "noEmit": false + "noEmit": false, + "strict": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true, + "allowSyntheticDefaultImports": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "isolatedModules": true, + "noUncheckedIndexedAccess": true, + "exactOptionalPropertyTypes": true, + "noImplicitReturns": true, + "noFallthroughCasesInSwitch": true, + "paths": { + "@emprespresso/ci_model": ["./index.ts"] + } }, "include": ["**/*.ts"], "exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"] -- cgit v1.2.3-70-g09d2