-
-
Notifications
You must be signed in to change notification settings - Fork 431
/
after-compile.ts
483 lines (436 loc) · 13.6 KB
/
after-compile.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
import * as path from 'path';
import type * as ts from 'typescript';
import * as webpack from 'webpack';
import * as constants from './constants';
import { getEmitFromWatchHost, getEmitOutput } from './instances';
import type {
FilePathKey,
LoaderOptions,
TSFiles,
TSInstance,
TSFile,
} from './interfaces';
import {
collectAllDependants,
ensureProgram,
formatErrors,
isReferencedFile,
populateReverseDependencyGraph,
tsLoaderSource,
} from './utils';
/**
* This returns a function that has options to add assets and also to provide errors to webpack
* In webpack 4 we can do both during the afterCompile hook
* In webpack 5 only errors should be provided during aftercompile. Assets should be
* emitted during the afterProcessAssets hook
*/
export function makeAfterCompile(
instance: TSInstance,
configFilePath: string | undefined
) {
let getCompilerOptionDiagnostics = true;
let checkAllFilesForErrors = true;
return (compilation: webpack.Compilation, callback: () => void) => {
// Don't add errors for child compilations
if (compilation.compiler.isChild()) {
callback();
return;
}
if (instance.loaderOptions.transpileOnly) {
provideAssetsFromSolutionBuilderHost(instance, compilation);
callback();
return;
}
removeCompilationTSLoaderErrors(compilation, instance.loaderOptions);
provideCompilerOptionDiagnosticErrorsToWebpack(
getCompilerOptionDiagnostics,
compilation,
instance,
configFilePath
);
getCompilerOptionDiagnostics = false;
const modules = determineModules(compilation, instance);
const filesToCheckForErrors = determineFilesToCheckForErrors(
checkAllFilesForErrors,
instance
);
checkAllFilesForErrors = false;
const filesWithErrors: TSFiles = new Map();
provideErrorsToWebpack(
filesToCheckForErrors,
filesWithErrors,
compilation,
modules,
instance
);
provideSolutionErrorsToWebpack(compilation, modules, instance);
provideDeclarationFilesToWebpack(
filesToCheckForErrors,
instance,
compilation
);
provideTsBuildInfoFilesToWebpack(instance, compilation);
provideAssetsFromSolutionBuilderHost(instance, compilation);
instance.filesWithErrors = filesWithErrors;
instance.modifiedFiles = undefined;
instance.projectsMissingSourceMaps = new Set();
callback();
};
}
/**
* handle compiler option errors after the first compile
*/
function provideCompilerOptionDiagnosticErrorsToWebpack(
getCompilerOptionDiagnostics: boolean,
compilation: webpack.Compilation,
instance: TSInstance,
configFilePath: string | undefined
) {
if (getCompilerOptionDiagnostics) {
const { languageService, loaderOptions, compiler, program } = instance;
const errors = formatErrors(
program === undefined
? languageService!.getCompilerOptionsDiagnostics()
: program.getOptionsDiagnostics(),
loaderOptions,
instance.colors,
compiler,
{ file: configFilePath || 'tsconfig.json' },
compilation.compiler.context
);
compilation.errors.push(...errors);
}
}
/**
* build map of all modules based on normalized filename
* this is used for quick-lookup when trying to find modules
* based on filepath
*/
function determineModules(
compilation: webpack.Compilation,
{ filePathKeyMapper }: TSInstance
) {
const modules: Map<FilePathKey, webpack.Module[]> = new Map();
compilation.modules.forEach(module => {
if (module instanceof webpack.NormalModule && module.resource) {
const modulePath = filePathKeyMapper(module.resource);
const existingModules = modules.get(modulePath);
if (existingModules !== undefined) {
if (!existingModules.includes(module)) {
existingModules.push(module);
}
} else {
modules.set(modulePath, [module]);
}
}
});
return modules;
}
function determineFilesToCheckForErrors(
checkAllFilesForErrors: boolean,
instance: TSInstance
) {
const { files, modifiedFiles, filesWithErrors, otherFiles } = instance;
// calculate array of files to check
const filesToCheckForErrors: TSFiles = new Map();
if (checkAllFilesForErrors) {
// check all files on initial run
for (const [filePath, file] of files) {
addFileToCheckForErrors(filePath, file);
}
for (const [filePath, file] of otherFiles) {
addFileToCheckForErrors(filePath, file);
}
} else if (
modifiedFiles !== null &&
modifiedFiles !== undefined &&
modifiedFiles.size
) {
const reverseDependencyGraph = populateReverseDependencyGraph(instance);
// check all modified files, and all dependants
for (const modifiedFileName of modifiedFiles.keys()) {
for (const fileName of collectAllDependants(
reverseDependencyGraph,
modifiedFileName
).keys()) {
const fileToCheckForErrors =
files.get(fileName) || otherFiles.get(fileName);
if (fileToCheckForErrors) {//file may have been removed
addFileToCheckForErrors(fileName, fileToCheckForErrors);
}
}
}
}
// re-check files with errors from previous build
if (filesWithErrors !== undefined) {
for (const [fileWithErrorName, fileWithErrors] of filesWithErrors) {
addFileToCheckForErrors(fileWithErrorName, fileWithErrors);
}
}
return filesToCheckForErrors;
function addFileToCheckForErrors(filePath: FilePathKey, file: TSFile) {
if (file && !isReferencedFile(instance, filePath)) {
filesToCheckForErrors.set(filePath, file);
}
}
}
function provideErrorsToWebpack(
filesToCheckForErrors: TSFiles,
filesWithErrors: TSFiles,
compilation: webpack.Compilation,
modules: Map<FilePathKey, webpack.Module[]>,
instance: TSInstance
) {
const {
compiler,
files,
loaderOptions,
compilerOptions,
otherFiles,
} = instance;
const filePathRegex =
compilerOptions.allowJs === true
? constants.dtsTsTsxJsJsxRegex
: constants.dtsTsTsxRegex;
// I’m pretty sure this will never be undefined here
const program = ensureProgram(instance);
for (const [filePath, { fileName }] of filesToCheckForErrors.entries()) {
if (fileName.match(filePathRegex) === null) {
continue;
}
const sourceFile = program && program.getSourceFile(fileName);
const errors: ts.Diagnostic[] = [];
if (program && sourceFile) {
errors.push(
...program!.getSyntacticDiagnostics(sourceFile),
...program!
.getSemanticDiagnostics(sourceFile)
// Output file has not been built from source file - this message is redundant with
// program.getOptionsDiagnostics() separately added in instances.ts
.filter(({ code }) => code !== 6305)
);
}
if (errors.length > 0) {
const fileWithError = files.get(filePath) || otherFiles.get(filePath);
filesWithErrors.set(filePath, fileWithError!);
}
// if we have access to a webpack module, use that
const associatedModules = modules.get(instance.filePathKeyMapper(fileName));
if (associatedModules !== undefined) {
associatedModules.forEach(module => {
removeModuleTSLoaderError(module, loaderOptions);
// append errors
const formattedErrors = formatErrors(
errors,
loaderOptions,
instance.colors,
compiler,
{ module },
compilation.compiler.context
);
formattedErrors.forEach(error => {
if (module.addError) {
module.addError(error);
} else {
module.errors.push(error);
}
});
compilation.errors.push(...formattedErrors);
});
} else {
// otherwise it's a more generic error
const formattedErrors = formatErrors(
errors,
loaderOptions,
instance.colors,
compiler,
{ file: fileName },
compilation.compiler.context
);
compilation.errors.push(...formattedErrors);
}
}
}
function provideSolutionErrorsToWebpack(
compilation: webpack.Compilation,
modules: Map<FilePathKey, webpack.Module[]>,
instance: TSInstance
) {
if (
!instance.solutionBuilderHost ||
!(
instance.solutionBuilderHost.diagnostics.global.length ||
instance.solutionBuilderHost.diagnostics.perFile.size
)
) {
return;
}
const {
compiler,
loaderOptions,
solutionBuilderHost: { diagnostics },
} = instance;
for (const [filePath, perFileDiagnostics] of diagnostics.perFile) {
// if we have access to a webpack module, use that
const associatedModules = modules.get(filePath);
if (associatedModules !== undefined) {
associatedModules.forEach(module => {
removeModuleTSLoaderError(module, loaderOptions);
// append errors
const formattedErrors = formatErrors(
perFileDiagnostics,
loaderOptions,
instance.colors,
compiler,
{ module },
compilation.compiler.context
);
formattedErrors.forEach(error => {
if (module.addError) {
module.addError(error);
} else {
module.errors.push(error);
}
});
compilation.errors.push(...formattedErrors);
});
} else {
// otherwise it's a more generic error
const formattedErrors = formatErrors(
perFileDiagnostics,
loaderOptions,
instance.colors,
compiler,
{ file: path.resolve(perFileDiagnostics[0].file!.fileName) },
compilation.compiler.context
);
compilation.errors.push(...formattedErrors);
}
}
// Add global solution errors
compilation.errors.push(
...formatErrors(
diagnostics.global,
instance.loaderOptions,
instance.colors,
instance.compiler,
{ file: 'tsconfig.json' },
compilation.compiler.context
)
);
}
/**
* gather all declaration files from TypeScript and output them to webpack.
* JavaScript declaration files are included if `allowJs` is set.
*/
function provideDeclarationFilesToWebpack(
filesToCheckForErrors: TSFiles,
instance: TSInstance,
compilation: webpack.Compilation
) {
const filePathRegex =
instance.compilerOptions.allowJs === true
? constants.dtsTsTsxJsJsxRegex
: constants.dtsTsTsxRegex;
for (const { fileName } of filesToCheckForErrors.values()) {
if (fileName.match(filePathRegex) === null) {
continue;
}
addDeclarationFilesAsAsset(getEmitOutput(instance, fileName), compilation);
}
}
function addDeclarationFilesAsAsset<T extends ts.OutputFile>(
outputFiles: T[] | IterableIterator<T>,
compilation: webpack.Compilation,
skipOutputFile?: (outputFile: T) => boolean
) {
outputFilesToAsset(outputFiles, compilation, outputFile =>
skipOutputFile && skipOutputFile(outputFile)
? true
: !outputFile.name.match(constants.dtsDtsxOrDtsDtsxMapRegex)
);
}
function outputFileToAsset(
outputFile: ts.OutputFile,
compilation: webpack.Compilation
) {
const assetPath = path
.relative(compilation.compiler.outputPath, outputFile.name)
// According to @alexander-akait (and @sokra) we should always '/' https://github.com/TypeStrong/ts-loader/pull/1251#issuecomment-799606985
.replace(/\\/g, '/');
// As suggested by @JonWallsten here: https://github.com/TypeStrong/ts-loader/pull/1251#issuecomment-800032753
compilation.emitAsset(
assetPath,
new webpack.sources.RawSource(outputFile.text)
);
}
function outputFilesToAsset<T extends ts.OutputFile>(
outputFiles: T[] | IterableIterator<T>,
compilation: webpack.Compilation,
skipOutputFile?: (outputFile: T) => boolean
) {
for (const outputFile of outputFiles) {
if (!skipOutputFile || !skipOutputFile(outputFile)) {
outputFileToAsset(outputFile, compilation);
}
}
}
/**
* gather all .tsbuildinfo for the project
*/
function provideTsBuildInfoFilesToWebpack(
instance: TSInstance,
compilation: webpack.Compilation
) {
if (instance.watchHost) {
// Ensure emit is complete
getEmitFromWatchHost(instance);
if (instance.watchHost.tsbuildinfo) {
outputFileToAsset(instance.watchHost.tsbuildinfo, compilation);
}
instance.watchHost.outputFiles.clear();
instance.watchHost.tsbuildinfo = undefined;
}
}
/**
* gather all solution builder assets
*/
function provideAssetsFromSolutionBuilderHost(
instance: TSInstance,
compilation: webpack.Compilation
) {
if (instance.solutionBuilderHost) {
// written files
outputFilesToAsset(instance.solutionBuilderHost.writtenFiles, compilation);
instance.solutionBuilderHost.writtenFiles.length = 0;
}
}
/**
* handle all other errors. The basic approach here to get accurate error
* reporting is to start with a "blank slate" each compilation and gather
* all errors from all files. Since webpack tracks errors in a module from
* compilation-to-compilation, and since not every module always runs through
* the loader, we need to detect and remove any pre-existing errors.
*/
function removeCompilationTSLoaderErrors(
compilation: webpack.Compilation,
loaderOptions: LoaderOptions
) {
compilation.errors = compilation.errors.filter(
error => error.details !== tsLoaderSource(loaderOptions)
);
}
function removeModuleTSLoaderError(
module: webpack.Module,
loaderOptions: LoaderOptions
) {
const warnings = module.getWarnings();
const errors = module.getErrors();
module.clearWarningsAndErrors();
Array.from(warnings || []).forEach(warning => module.addWarning(warning));
Array.from(errors || [])
.filter(
(error: any) => error.loaderSource !== tsLoaderSource(loaderOptions)
)
.forEach(error => module.addError(error));
}