Skip to content

Commit

Permalink
Audit tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
arnautov-anton committed Sep 11, 2023
1 parent 4431101 commit 2a2f417
Showing 1 changed file with 6 additions and 17 deletions.
23 changes: 6 additions & 17 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,13 @@
{
"compilerOptions": {
"baseUrl": "./src",
"paths": {
"*": ["src/@types/*"]
},
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"esModuleInterop": true,
"importsNotUsedAsValues": "error",
"forceConsistentCasingInFileNames": true,
"jsx": "react",
"lib": ["esnext", "DOM"],
"module": "esnext",
"moduleResolution": "node",
"lib": ["ESNext", "DOM"],
"module": "ESNext",
"moduleResolution": "Node",
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noImplicitUseStrict": false,
Expand All @@ -25,22 +20,16 @@
"strict": true,
"target": "ES5",
"allowSyntheticDefaultImports": true,
"noEmitOnError": false,
"noEmitOnError": true,
"noImplicitAny": true,
"allowJs": true,
"checkJs": false,
"outDir": "./dist",
"declaration": true,
"declarationDir": "./dist",
"declarationMap": true,
"types": ["vite/client"]
"importHelpers": true
},
"include": ["./src/**/*"],
"exclude": [
"./src/mock-builders",
"node_modules",
"babel.config.js",
"jest.config.js",
"**/__tests__/*.test.js"
]
"exclude": ["./src/stories", "./src/mock-builders", "./src/**/__tests__/*"]
}

0 comments on commit 2a2f417

Please sign in to comment.