46e74ff3f5
Introduce the source-map-support package and require it for mocha running unit tests. Turn on the sourceMap option for tsconfig.base.json so that the sourceMappingURL= line is emitted in the generated files. Co-authored-by: Mathias Bynens <mathias@qiwi.be>
15 lines
289 B
JSON
15 lines
289 B
JSON
{
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"target": "ESNext",
|
|
"moduleResolution": "node",
|
|
"module": "ESNext",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
}
|
|
}
|