Compare commits

...

4 Commits

Author SHA1 Message Date
7ee9935a9a 2.1.29 2022-01-19 17:59:08 +01:00
5128d450bc fix(core): update 2022-01-19 17:59:07 +01:00
8708b1442d 2.1.28 2021-10-06 13:33:35 +02:00
0e39dfecba fix(core): update 2021-10-06 13:33:35 +02:00
3 changed files with 9 additions and 5 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "@gitzone/tsbuild",
"version": "2.1.27",
"version": "2.1.29",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@gitzone/tsbuild",
"version": "2.1.27",
"version": "2.1.29",
"license": "MIT",
"dependencies": {
"@pushrocks/early": "^3.0.6",

View File

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

View File

@ -17,7 +17,8 @@ export const compilerOptionsDefault: CompilerOptions = {
lib: ['lib.es2017.d.ts'],
noImplicitAny: false,
esModuleInterop: true,
target: plugins.typescript.ScriptTarget.ES2017
target: plugins.typescript.ScriptTarget.ES2017,
importsNotUsedAsValues: plugins.typescript.ImportsNotUsedAsValues.Preserve
};
export const compilerOptionsWebDefault: CompilerOptions = {
@ -43,7 +44,10 @@ export const mergeCompilerOptions = (
// create merged options
const mergedOptions: CompilerOptions = {
...defaultOptionsToMerge,
...customTsOptions
...customTsOptions,
...argvArg && argvArg.skiplibcheck ? {
skipLibCheck: true
} : {},
};
return mergedOptions;