From 2c7db7b298ae7a7b8d6d67f13b61f18a3d310624 Mon Sep 17 00:00:00 2001 From: Elizabeth Hunt Date: Sun, 7 Dec 2025 14:34:20 -0800 Subject: Dogfood ci model in .ci --- .ci/tsconfig.json | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) (limited to '.ci/tsconfig.json') diff --git a/.ci/tsconfig.json b/.ci/tsconfig.json index 3858ff4..7cfeadc 100644 --- a/.ci/tsconfig.json +++ b/.ci/tsconfig.json @@ -1,15 +1,28 @@ { - "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 }, "include": ["**/*.ts"], - "exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"], - "references": [{ "path": "../model" }] + "exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"] } -- cgit v1.2.3-70-g09d2