fix(core): update
This commit is contained in:
@ -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'
|
||||
}
|
||||
|
@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user