Skip to content

Commit

Permalink
try tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiankaegy committed Jun 18, 2024
1 parent a75b67b commit e311115
Showing 1 changed file with 21 additions and 6 deletions.
27 changes: 21 additions & 6 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,35 @@
"skipLibCheck": true,
"declaration": true,
"declarationMap": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"esModuleInterop": true,
"module": "commonjs",
"target": "ES2017",
"esModuleInterop": false,
"target": "esnext",
"module": "esnext",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"strictBindCallApply": true,
"strictNullChecks": true,
"outDir": "./dist"
"outDir": "./dist",
"checkJs": true,
"allowSyntheticDefaultImports": true,
"jsx": "preserve",
"composite": true,
"emitDeclarationOnly": true,
/* Strict Type-Checking Options */
"strict": true,
/* Additional Checks */
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
/* Module Resolution Options */
"moduleResolution": "node",
"typeRoots": [
"./node_modules/@types"
],
"types": []
},
"exclude": [
"cypress/**",
Expand Down

0 comments on commit e311115

Please sign in to comment.