summaryrefslogtreecommitdiff
path: root/.ci/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to '.ci/tsconfig.json')
-rw-r--r--.ci/tsconfig.json21
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"]
}