Skip to content

Commit

Permalink
fix(): Fix for #345 remove revert to old tsconfig.build
Browse files Browse the repository at this point in the history
  • Loading branch information
doug-martin committed May 15, 2020
1 parent be488c8 commit aa4488f
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,22 @@
{
"compilerOptions": {
"sourceMap": true,
"declaration": true,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"resolveJsonModule": true,
"importHelpers": true,
"target": "es2018",
"module": "commonjs",
"esModuleInterop": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"declaration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"lib": ["es2016"],
"module": "commonjs",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"pretty": true,
"sourceMap": true,
"strict": true,
"noUnusedLocals": true
"target": "es2017"
},
"exclude": ["node_modules", "documentation"]
"exclude": [
"node_modules",
"documentation"
]
}

0 comments on commit aa4488f

Please sign in to comment.