Compare commits

...

2 Commits

Author SHA1 Message Date
b9523d25e6 2.1.10 2019-04-30 13:27:42 +02:00
fdf3d14456 fix(core): update 2019-04-30 13:27:42 +02:00
3 changed files with 3 additions and 2 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "@gitzone/tsbuild",
"version": "2.1.9",
"version": "2.1.10",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@gitzone/tsbuild",
"version": "2.1.9",
"version": "2.1.10",
"private": false,
"description": "TypeScript nightly to easily make use of latest features",
"main": "dist/index.js",

View File

@ -16,6 +16,7 @@ export const compilerOptionsDefault: CompilerOptions = {
module: plugins.typescript.ModuleKind.CommonJS,
lib: ['lib.es2017.d.ts'],
noImplicitAny: false,
esModuleInterop: true,
target: plugins.typescript.ScriptTarget.ES2017
};