From 5766583d629af78018a911992dee9a88d63ac60f Mon Sep 17 00:00:00 2001 From: Elizabeth Hunt Date: Tue, 9 Dec 2025 20:04:17 -0800 Subject: Adds some logs and uses updated pengueno stuff --- .ci/tsconfig.json | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) (limited to '.ci/tsconfig.json') diff --git a/.ci/tsconfig.json b/.ci/tsconfig.json index a718375..7cfeadc 100644 --- a/.ci/tsconfig.json +++ b/.ci/tsconfig.json @@ -1,8 +1,9 @@ { - "include": ["**/*.ts"], "compilerOptions": { + "target": "ES2022", "module": "ESNext", - "target": "es2018", + "lib": ["ES2022"], + "moduleResolution": "node", "outDir": "./dist", "rootDir": "./", "composite": true, @@ -10,8 +11,18 @@ "declarationMap": true, "sourceMap": true, "noEmit": false, - "moduleResolution": "node" + "strict": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true, + "allowSyntheticDefaultImports": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "isolatedModules": true, + "noUncheckedIndexedAccess": true, + "exactOptionalPropertyTypes": true, + "noImplicitReturns": true, + "noFallthroughCasesInSwitch": true }, - "exclude": ["node_modules", "dist", "**/*.d.ts"], - "references": [] + "include": ["**/*.ts"], + "exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"] } -- cgit v1.2.3-70-g09d2