fix(core): update

This commit is contained in:
2023-06-03 16:45:40 +02:00
parent 5d0c9b0326
commit dc81d99ac3
9 changed files with 2356 additions and 6567 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@gitzone/tsbuild',
version: '2.1.65',
version: '2.1.66',
description: 'TypeScript nightly to easily make use of latest features'
}

View File

@ -1,6 +1,6 @@
// import all the stuff we need
import * as plugins from './tsbuild.plugins.js';
import { CompilerOptions, ScriptTarget, ModuleKind } from './tsbuild.exports.js';
import type { CompilerOptions, ScriptTarget, ModuleKind } from './tsbuild.exports.js';
/**
* the default typescript compilerOptions
@ -19,7 +19,7 @@ export const compilerOptionsDefault: CompilerOptions = {
noImplicitAny: true,
esModuleInterop: true,
useDefineForClassFields: false,
importsNotUsedAsValues: plugins.typescript.ImportsNotUsedAsValues.Preserve,
verbatimModuleSyntax: true,
};
/**
@ -67,7 +67,7 @@ export const compiler = async (
if (options.skipLibCheck) {
console.log('? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?');
console.log('You are skipping libcheck... Is that really wanted?');
console.log('continuing in 5 seconds...')
console.log('continuing in 5 seconds...');
console.log('? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?');
await plugins.smartdelay.delayFor(5000);
}