Skip to content

Commit

Permalink
fix(build) typescript tsconfig.json settings update
Browse files Browse the repository at this point in the history
  • Loading branch information
aruntk committed Feb 11, 2019
1 parent 65042f9 commit 5a1a0b4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "redux-api-saga",
"version": "1.0.1",
"version": "1.0.2",
"description": "Redux Saga API abstraction",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down
8 changes: 5 additions & 3 deletions tsconfig.json
@@ -1,19 +1,22 @@
{
"compilerOptions": {
"target": "es5",
"module": "esnext",
"outDir": "./lib",
"target": "es5",
"downlevelIteration": true,
"lib": [
"dom",
"es7"
],
"sourceMap": true,
"allowJs": true,
"moduleResolution": "node",
"rootDir": "src",
"forceConsistentCasingInFileNames": true,
"noImplicitAny": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"experimentalDecorators": true,
"jsx": "preserve",
"noUnusedLocals": true,
"skipLibCheck": true,
"esModuleInterop": true,
Expand All @@ -23,7 +26,6 @@
"isolatedModules": true,
"noEmit": true,
"strictFunctionTypes": false

},
"include": ["src"],
"exclude": ["node_modules", "**/__tests__/*"]
Expand Down

0 comments on commit 5a1a0b4

Please sign in to comment.