From 2573dbcee9249a6e9301dd0d7fd9e0b893b2ab2f Mon Sep 17 00:00:00 2001 From: Elizabeth Hunt Date: Mon, 28 Jul 2025 23:20:17 -0700 Subject: Init :3 --- .ci/tsconfig.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .ci/tsconfig.json (limited to '.ci/tsconfig.json') diff --git a/.ci/tsconfig.json b/.ci/tsconfig.json new file mode 100644 index 0000000..51aeb50 --- /dev/null +++ b/.ci/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "target": "ES2022", + "module": "ESNext", + "baseUrl": ".", + "outDir": "./dist", + "declaration": true, + "moduleResolution": "node", + "strict": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true, + "allowSyntheticDefaultImports": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "isolatedModules": true, + "noUncheckedIndexedAccess": true, + "exactOptionalPropertyTypes": true, + "noImplicitReturns": true, + "noFallthroughCasesInSwitch": true, + "lib": ["ES2022"] + }, + "include": ["**/*.ts"], + "exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"], + "references": [] +} -- cgit v1.2.3-70-g09d2