Navigation Menu

Skip to content

Commit

Permalink
fix: correct build compilation failure (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickmichalina committed Oct 5, 2018
1 parent ec8a8f9 commit 21139e9
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
30 changes: 30 additions & 0 deletions tsconfig.build.json
@@ -0,0 +1,30 @@
{
"compilerOptions": {
"target": "es5",
"module": "es2015",
"moduleResolution": "node",
"lib": ["es2015", "dom"],
"outDir": "dist",
"isolatedModules": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noImplicitAny": true,
"noImplicitUseStrict": false,
"noEmitHelpers": false,
"noLib": false,
"noUnusedLocals": true,
"noEmitOnError": true,
"allowSyntheticDefaultImports": false,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"strict": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"sourceMap": true
},
"include": [
"src/**/*.ts"
]
}
2 changes: 1 addition & 1 deletion tsconfig.json
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"target": "es5",
"module": "es2015",
"module": "commonjs",
"moduleResolution": "node",
"lib": ["es2015", "dom"],
"outDir": "dist",
Expand Down

0 comments on commit 21139e9

Please sign in to comment.