summaryrefslogtreecommitdiff
path: root/.ci/tsconfig.json
diff options
context:
space:
mode:
authorElizabeth Hunt <me@liz.coffee>2025-07-28 23:20:17 -0700
committerElizabeth Hunt <me@liz.coffee>2025-07-28 23:20:17 -0700
commit2573dbcee9249a6e9301dd0d7fd9e0b893b2ab2f (patch)
tree9424bfaeea771172db394bc681b8bb946d3c7795 /.ci/tsconfig.json
downloadwwwgit-2573dbcee9249a6e9301dd0d7fd9e0b893b2ab2f.tar.gz
wwwgit-2573dbcee9249a6e9301dd0d7fd9e0b893b2ab2f.zip
Init :3
Diffstat (limited to '.ci/tsconfig.json')
-rw-r--r--.ci/tsconfig.json25
1 files changed, 25 insertions, 0 deletions
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": []
+}