Skip to content

Commit

Permalink
Merge pull request #1 from lastcode802/fearure/update_tsconfig
Browse files Browse the repository at this point in the history
update and a new staff in tsconfig
  • Loading branch information
sharozraees802 committed Oct 4, 2022
2 parents 32ef8be + 9d51155 commit a5334da
Showing 1 changed file with 37 additions and 12 deletions.
49 changes: 37 additions & 12 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,50 @@
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
"ES2020",
"dom"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"outDir": "lib",
"jsx": "react-jsx",
"module": "CommonJS",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noImplicitAny": false,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"allowJs": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx"
"noEmit": false,
"paths": {
"react": [ "./node_modules/@types/react" ]
}
},
"include": [
"src"
],
"exclude": [
"node_modules",
"**/*.test.ts",
"**/*.test.tsx",
"**/*.stories.tsx",
"./src/setupTests.ts"
],
"files": [
"./src/index.tsx"
]
}
}

0 comments on commit a5334da

Please sign in to comment.