summaryrefslogtreecommitdiff
path: root/.ci/tsconfig.json
diff options
context:
space:
mode:
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": []
+}