tsbuild/ts/tsbuild.classes.compiler.ts

110 lines
3.2 KiB
TypeScript
Raw Normal View History

2018-07-25 18:56:42 +00:00
// import all the stuff we need
2022-03-12 18:05:46 +00:00
import * as plugins from './tsbuild.plugins.js';
2022-03-12 18:42:49 +00:00
import { CompilerOptions, ScriptTarget, ModuleKind } from './tsbuild.exports.js';
2022-03-12 18:05:46 +00:00
2018-07-25 18:56:42 +00:00
/**
* the default typescript compilerOptions
*/
export const compilerOptionsDefault: CompilerOptions = {
declaration: true,
emitDecoratorMetadata: true,
experimentalDecorators: true,
inlineSourceMap: true,
noEmitOnError: true,
2020-03-13 19:23:01 +00:00
outDir: 'dist_ts/',
2022-03-12 18:05:46 +00:00
module: plugins.typescript.ModuleKind.ES2020,
target: plugins.typescript.ScriptTarget.ES2020,
2022-03-11 16:36:27 +00:00
moduleResolution: plugins.typescript.ModuleResolutionKind.Node12,
lib: [],
2022-03-14 15:04:07 +00:00
noImplicitAny: true,
2019-04-30 11:27:42 +00:00
esModuleInterop: true,
2021-10-06 11:33:35 +00:00
importsNotUsedAsValues: plugins.typescript.ImportsNotUsedAsValues.Preserve
2018-07-25 18:56:42 +00:00
};
export const compilerOptionsWebDefault: CompilerOptions = {
...compilerOptionsDefault,
2018-12-05 23:45:22 +00:00
lib: [...compilerOptionsDefault.lib, 'lib.dom.d.ts']
};
2018-07-25 18:56:42 +00:00
/**
* merges compilerOptions with the default compiler options
*/
2019-08-26 14:28:03 +00:00
export const mergeCompilerOptions = (
customTsOptions: CompilerOptions,
argvArg?: any
): CompilerOptions => {
const defaultOptionsToMerge = (() => {
if (argvArg && argvArg.web) {
return compilerOptionsWebDefault;
} else {
return compilerOptionsDefault;
}
})();
2018-07-25 18:56:42 +00:00
// create merged options
2020-03-13 19:23:01 +00:00
const mergedOptions: CompilerOptions = {
...defaultOptionsToMerge,
2022-01-19 16:59:07 +00:00
...customTsOptions,
...argvArg && argvArg.skiplibcheck ? {
skipLibCheck: true
} : {},
2022-03-14 20:46:41 +00:00
...argvArg && argvArg.allowimplicitany ? {
noImplicitAny: false
} : {},
2022-03-15 08:45:49 +00:00
...argvArg && argvArg.commonjs ? {
module: plugins.typescript.ModuleKind.CommonJS,
2022-03-15 09:21:15 +00:00
moduleResolution: plugins.typescript.ModuleResolutionKind.NodeJs,
2022-03-15 08:45:49 +00:00
} : {},
2018-07-25 18:56:42 +00:00
};
2022-03-15 09:18:08 +00:00
console.log(mergedOptions)
2018-07-25 18:56:42 +00:00
return mergedOptions;
};
/**
* the internal main compiler function that compiles the files
*/
export const compiler = (
fileNames: string[],
options: plugins.typescript.CompilerOptions,
2019-08-26 14:28:03 +00:00
argvArg?: any
2018-07-25 18:56:42 +00:00
): Promise<any[]> => {
console.log(`Compiling ${fileNames.length} files...`);
2020-03-13 19:23:01 +00:00
const done = plugins.smartpromise.defer<any[]>();
const program = plugins.typescript.createProgram(fileNames, options);
const emitResult = program.emit();
2018-07-25 18:56:42 +00:00
// implement check only
/*let emitResult = program.emit(undefined,(args) => {
console.log(args)
});*/
2020-03-13 19:23:01 +00:00
const allDiagnostics = plugins.typescript
2018-07-25 18:56:42 +00:00
.getPreEmitDiagnostics(program)
.concat(emitResult.diagnostics);
allDiagnostics.forEach(diagnostic => {
if (diagnostic.file) {
2020-03-13 19:23:01 +00:00
const { line, character } = diagnostic.file.getLineAndCharacterOfPosition(diagnostic.start!);
const message = plugins.typescript.flattenDiagnosticMessageText(diagnostic.messageText, '\n');
2018-07-25 18:56:42 +00:00
console.log(`${diagnostic.file.fileName} (${line + 1},${character + 1}): ${message}`);
} else {
console.log(
`${plugins.typescript.flattenDiagnosticMessageText(diagnostic.messageText, '\n')}`
);
}
});
2018-07-25 18:56:42 +00:00
2020-03-13 19:23:01 +00:00
const exitCode = emitResult.emitSkipped ? 1 : 0;
2018-07-25 18:56:42 +00:00
if (exitCode === 0) {
console.log('TypeScript emit succeeded!');
done.resolve(emitResult.emittedFiles);
} else {
console.error('TypeScript emit failed. Please investigate!');
process.exit(exitCode);
}
return done.promise;
};