diff options
| author | Elizabeth Hunt <me@liz.coffee> | 2025-12-09 20:04:17 -0800 |
|---|---|---|
| committer | Elizabeth Hunt <me@liz.coffee> | 2025-12-09 20:14:01 -0800 |
| commit | 5766583d629af78018a911992dee9a88d63ac60f (patch) | |
| tree | fc43ad7fc10e80097133c4230f0b8bfa035e17d8 /.ci/tsconfig.json | |
| parent | fd4e7ac4466593605c18b1b5fab4f76db5326520 (diff) | |
| download | canary-5766583d629af78018a911992dee9a88d63ac60f.tar.gz canary-5766583d629af78018a911992dee9a88d63ac60f.zip | |
Adds some logs and uses updated pengueno stuff
Diffstat (limited to '.ci/tsconfig.json')
| -rw-r--r-- | .ci/tsconfig.json | 21 |
1 files changed, 16 insertions, 5 deletions
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"] } |
