@swc-node/register 1.3.3 → 1.3.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -21
- package/lib/read-default-tsconfig.js +10 -8
- package/lib/read-default-tsconfig.js.map +1 -1
- package/lib/register.js +7 -7
- package/lib/register.js.map +1 -1
- package/lib/tsconfig.project.tsbuildinfo +1 -0
- package/package.json +8 -6
- package/CHANGELOG.md +0 -205
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2020-present LongYinan
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2020-present LongYinan
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -4,13 +4,13 @@ exports.tsCompilerOptionsToSwcConfig = exports.createSourcemapOption = exports.r
|
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const fs_1 = require("fs");
|
|
6
6
|
const path_1 = require("path");
|
|
7
|
-
const chalk_1 = tslib_1.__importDefault(require("chalk"));
|
|
8
|
-
const debug_1 = tslib_1.__importDefault(require("debug"));
|
|
9
|
-
const ts = tslib_1.__importStar(require("typescript"));
|
|
10
|
-
const debug = debug_1.default('@swc-node');
|
|
7
|
+
const chalk_1 = (0, tslib_1.__importDefault)(require("chalk"));
|
|
8
|
+
const debug_1 = (0, tslib_1.__importDefault)(require("debug"));
|
|
9
|
+
const ts = (0, tslib_1.__importStar)(require("typescript"));
|
|
10
|
+
const debug = (0, debug_1.default)('@swc-node');
|
|
11
11
|
function readDefaultTsConfig(tsConfigPath) {
|
|
12
12
|
var _a, _b;
|
|
13
|
-
if (tsConfigPath === void 0) { tsConfigPath = (_b = (_a = process.env.SWC_NODE_PROJECT) !== null && _a !== void 0 ? _a : process.env.TS_NODE_PROJECT) !== null && _b !== void 0 ? _b : path_1.join(process.cwd(), 'tsconfig.json'); }
|
|
13
|
+
if (tsConfigPath === void 0) { tsConfigPath = (_b = (_a = process.env.SWC_NODE_PROJECT) !== null && _a !== void 0 ? _a : process.env.TS_NODE_PROJECT) !== null && _b !== void 0 ? _b : (0, path_1.join)(process.cwd(), 'tsconfig.json'); }
|
|
14
14
|
let compilerOptions = {
|
|
15
15
|
target: ts.ScriptTarget.ES2018,
|
|
16
16
|
module: ts.ModuleKind.CommonJS,
|
|
@@ -18,11 +18,11 @@ function readDefaultTsConfig(tsConfigPath) {
|
|
|
18
18
|
sourceMap: true,
|
|
19
19
|
esModuleInterop: true,
|
|
20
20
|
};
|
|
21
|
-
if (tsConfigPath && fs_1.existsSync(tsConfigPath)) {
|
|
21
|
+
if (tsConfigPath && (0, fs_1.existsSync)(tsConfigPath)) {
|
|
22
22
|
try {
|
|
23
23
|
debug(`Read config file from ${tsConfigPath}`);
|
|
24
24
|
const { config } = ts.readConfigFile(tsConfigPath, ts.sys.readFile);
|
|
25
|
-
const { options, errors, fileNames } = ts.parseJsonConfigFileContent(config, ts.sys,
|
|
25
|
+
const { options, errors, fileNames } = ts.parseJsonConfigFileContent(config, ts.sys, process.cwd());
|
|
26
26
|
if (!errors.length) {
|
|
27
27
|
compilerOptions = options;
|
|
28
28
|
compilerOptions.files = fileNames;
|
|
@@ -53,11 +53,13 @@ function toTsTarget(target) {
|
|
|
53
53
|
case ts.ScriptTarget.ES2018:
|
|
54
54
|
return 'es2018';
|
|
55
55
|
case ts.ScriptTarget.ES2019:
|
|
56
|
+
return 'es2019';
|
|
56
57
|
case ts.ScriptTarget.ES2020:
|
|
58
|
+
return 'es2020';
|
|
57
59
|
case ts.ScriptTarget.ES2021:
|
|
58
60
|
case ts.ScriptTarget.ESNext:
|
|
59
61
|
case ts.ScriptTarget.Latest:
|
|
60
|
-
return '
|
|
62
|
+
return 'es2021';
|
|
61
63
|
case ts.ScriptTarget.JSON:
|
|
62
64
|
return 'es5';
|
|
63
65
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"read-default-tsconfig.js","sourceRoot":"","sources":["../read-default-tsconfig.ts"],"names":[],"mappings":";;;;AAAA,2BAA+B;AAC/B,+
|
|
1
|
+
{"version":3,"file":"read-default-tsconfig.js","sourceRoot":"","sources":["../read-default-tsconfig.ts"],"names":[],"mappings":"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"}
|
package/lib/register.js
CHANGED
|
@@ -7,17 +7,17 @@ const path_1 = require("path");
|
|
|
7
7
|
const core_1 = require("@swc-node/core");
|
|
8
8
|
const sourcemap_support_1 = require("@swc-node/sourcemap-support");
|
|
9
9
|
const pirates_1 = require("pirates");
|
|
10
|
-
const ts = tslib_1.__importStar(require("typescript"));
|
|
10
|
+
const ts = (0, tslib_1.__importStar)(require("typescript"));
|
|
11
11
|
const read_default_tsconfig_1 = require("./read-default-tsconfig");
|
|
12
12
|
const DEFAULT_EXTENSIONS = ['.js', '.jsx', '.es6', '.es', '.mjs', '.ts', '.tsx'];
|
|
13
|
-
const PLATFORM = os_1.platform();
|
|
13
|
+
const PLATFORM = (0, os_1.platform)();
|
|
14
14
|
function compile(sourcecode, filename, options) {
|
|
15
15
|
if (filename.endsWith('.d.ts')) {
|
|
16
16
|
return '';
|
|
17
17
|
}
|
|
18
18
|
if (options.files && options.files.length) {
|
|
19
19
|
if (PLATFORM === 'win32' &&
|
|
20
|
-
options.files.every((file) => filename !== path_1.resolve(process.cwd(), file))) {
|
|
20
|
+
options.files.every((file) => filename !== (0, path_1.resolve)(process.cwd(), file))) {
|
|
21
21
|
return sourcecode;
|
|
22
22
|
}
|
|
23
23
|
if (PLATFORM !== 'win32' && options.files.every((file) => !filename.endsWith(file))) {
|
|
@@ -36,7 +36,7 @@ function compile(sourcecode, filename, options) {
|
|
|
36
36
|
return outputText;
|
|
37
37
|
}
|
|
38
38
|
else {
|
|
39
|
-
const { code, map } = core_1.transformSync(sourcecode, filename, read_default_tsconfig_1.tsCompilerOptionsToSwcConfig(options, filename));
|
|
39
|
+
const { code, map } = (0, core_1.transformSync)(sourcecode, filename, (0, read_default_tsconfig_1.tsCompilerOptionsToSwcConfig)(options, filename));
|
|
40
40
|
// in case of map is undefined
|
|
41
41
|
if (map) {
|
|
42
42
|
sourcemap_support_1.SourcemapMap.set(filename, map);
|
|
@@ -45,9 +45,9 @@ function compile(sourcecode, filename, options) {
|
|
|
45
45
|
}
|
|
46
46
|
}
|
|
47
47
|
exports.compile = compile;
|
|
48
|
-
function register(options = read_default_tsconfig_1.readDefaultTsConfig()) {
|
|
49
|
-
sourcemap_support_1.installSourceMapSupport();
|
|
50
|
-
pirates_1.addHook((code, filename) => compile(code, filename, options), {
|
|
48
|
+
function register(options = (0, read_default_tsconfig_1.readDefaultTsConfig)()) {
|
|
49
|
+
(0, sourcemap_support_1.installSourceMapSupport)();
|
|
50
|
+
(0, pirates_1.addHook)((code, filename) => compile(code, filename, options), {
|
|
51
51
|
exts: DEFAULT_EXTENSIONS,
|
|
52
52
|
});
|
|
53
53
|
}
|
package/lib/register.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"register.js","sourceRoot":"","sources":["../register.ts"],"names":[],"mappings":";;;;AAAA,2BAA6B;AAC7B,+BAA8B;AAE9B,yCAA8C;AAC9C,mEAAmF;AACnF,qCAAiC;AACjC,
|
|
1
|
+
{"version":3,"file":"register.js","sourceRoot":"","sources":["../register.ts"],"names":[],"mappings":";;;;AAAA,2BAA6B;AAC7B,+BAA8B;AAE9B,yCAA8C;AAC9C,mEAAmF;AACnF,qCAAiC;AACjC,4DAAgC;AAEhC,mEAA2F;AAE3F,MAAM,kBAAkB,GAAG,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,CAAC,CAAA;AAChF,MAAM,QAAQ,GAAG,IAAA,aAAQ,GAAE,CAAA;AAE3B,SAAgB,OAAO,CACrB,UAAkB,EAClB,QAAgB,EAChB,OAA8E;IAE9E,IAAI,QAAQ,CAAC,QAAQ,CAAC,OAAO,CAAC,EAAE;QAC9B,OAAO,EAAE,CAAA;KACV;IACD,IAAI,OAAO,CAAC,KAAK,IAAK,OAAO,CAAC,KAAkB,CAAC,MAAM,EAAE;QACvD,IACE,QAAQ,KAAK,OAAO;YACnB,OAAO,CAAC,KAAkB,CAAC,KAAK,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,QAAQ,KAAK,IAAA,cAAO,EAAC,OAAO,CAAC,GAAG,EAAE,EAAE,IAAI,CAAC,CAAC,EACtF;YACA,OAAO,UAAU,CAAA;SAClB;QACD,IAAI,QAAQ,KAAK,OAAO,IAAK,OAAO,CAAC,KAAkB,CAAC,KAAK,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,EAAE;YACjG,OAAO,UAAU,CAAA;SAClB;KACF;IACD,IAAI,OAAO,IAAI,OAAO,OAAO,CAAC,YAAY,KAAK,UAAU,IAAI,OAAO,CAAC,YAAY,CAAC,QAAQ,CAAC,EAAE;QAC3F,OAAO,OAAO,CAAC,YAAY,CAAA;QAC3B,MAAM,EAAE,UAAU,EAAE,aAAa,EAAE,GAAG,EAAE,CAAC,eAAe,CAAC,UAAU,EAAE;YACnE,QAAQ,EAAE,QAAQ;YAClB,eAAe,EAAE,OAAO;SACzB,CAAC,CAAA;QACF,IAAI,aAAa,EAAE;YACjB,gCAAY,CAAC,GAAG,CAAC,QAAQ,EAAE,aAAa,CAAC,CAAA;SAC1C;QACD,OAAO,UAAU,CAAA;KAClB;SAAM;QACL,MAAM,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,IAAA,oBAAa,EAAC,UAAU,EAAE,QAAQ,EAAE,IAAA,oDAA4B,EAAC,OAAO,EAAE,QAAQ,CAAC,CAAC,CAAA;QAC1G,8BAA8B;QAC9B,IAAI,GAAG,EAAE;YACP,gCAAY,CAAC,GAAG,CAAC,QAAQ,EAAE,GAAG,CAAC,CAAA;SAChC;QACD,OAAO,IAAI,CAAA;KACZ;AACH,CAAC;AArCD,0BAqCC;AAED,SAAgB,QAAQ,CAAC,OAAO,GAAG,IAAA,2CAAmB,GAAE;IACtD,IAAA,2CAAuB,GAAE,CAAA;IACzB,IAAA,iBAAO,EAAC,CAAC,IAAI,EAAE,QAAQ,EAAE,EAAE,CAAC,OAAO,CAAC,IAAI,EAAE,QAAQ,EAAE,OAAO,CAAC,EAAE;QAC5D,IAAI,EAAE,kBAAkB;KACzB,CAAC,CAAA;AACJ,CAAC;AALD,4BAKC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"program":{"fileNames":["../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@4.4.4/node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/tslib/tslib.d.ts","../node_modules/@swc-node/core/node_modules/@swc/core/types.d.ts","../node_modules/@swc-node/core/node_modules/@swc/core/spack.d.ts","../node_modules/@swc-node/core/node_modules/@swc/core/index.d.ts","../node_modules/@swc-node/core/lib/index.d.ts","../node_modules/@swc-node/sourcemap-support/lib/index.d.ts","../node_modules/pirates/index.d.ts","../node_modules/typescript/lib/typescript.d.ts","../node_modules/chalk/index.d.ts","../../../node_modules/@types/ms/index.d.ts","../node_modules/@types/debug/index.d.ts","../read-default-tsconfig.ts","../register.ts","../../../node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@types/babel__template/index.d.ts","../../../node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/@types/babel__core/index.d.ts","../../../node_modules/@types/benchmark/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/eslint/lib/rules/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/eslint-scope/index.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/graceful-fs/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/@types/jest/index.d.ts","../../../node_modules/@types/json5/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/sinon/index.d.ts","../../../node_modules/@types/source-map-support/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts","../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/source-map/source-map.d.ts"],"fileInfos":[{"version":"aa9fb4c70f369237c2f45f9d969c9a59e0eae9a192962eb48581fe864aa609db","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940","eb75e89d63b3b72dd9ca8b0cac801cecae5be352307c004adeaa60bc9d6df51f","2cc028cd0bdb35b1b5eb723d84666a255933fffbea607f72cbd0c7c7b4bee144",{"version":"e54c8715a4954cfdc66cd69489f2b725c09ebf37492dbd91cff0a1688b1159e8","affectsGlobalScope":true},{"version":"e34eb9339171ec45da2801c1967e4d378bd61a1dceaa1b1b4e1b6d28cb9ca962","affectsGlobalScope":true},{"version":"51b8b27c21c066bf877646e320bf6a722b80d1ade65e686923cd9d4494aef1ca","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"2c8c5ee58f30e7c944e04ab1fb5506fdbb4dd507c9efa6972cf4b91cec90c503","affectsGlobalScope":true},{"version":"2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"9f1817f7c3f02f6d56e0f403b927e90bb133f371dcebc36fa7d6d208ef6899da","affectsGlobalScope":true},{"version":"cd6efb9467a8b6338ece2e2855e37765700f2cd061ca54b01b33878cf5c7677e","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"4632665b87204bb1caa8b44d165bce0c50dfab177df5b561b345a567cabacf9a","affectsGlobalScope":true},"12f4cfe2fe60b810c3174537bc2ddb20c1067b7768643d12cb1266fd183afb75","b93f4347dc735039cee3f1f21b3bb189168a7c1cc5570a96ac1f4babd3528807","64fc83827991f031599c58c1c296252db19b9fb1e5065bac0ecc7e3ecb64a14b","1c22c32eb3616cf23c982e162269e6c56ab545edab251291e35e84f751f7e8ed","0f44f56180ac3e4fd68b8da2a2a3b5e47bdf83142cab9798bf599cc8c2781b59","884245b4e936ea16f3d0e4841c4d78e0c101d8cf4c7f47ae2e08957392e02ecd","e9307228019b5baf3ba16b57b11789b748c59ebabd25b18dd11aaafb46c8235b","693bfecb024a122139eccd43e82633076d9bd7ee453600eb273fb521fe842d96","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41",{"version":"acaf87559bff7472da60705405f0044abddc1ffc5e8ee2cfabbe60052bfd2ca9","signature":"0b284a7c9334d46fd482fd58d5a4e5eba0fd9e535f856e6a2a225afa0e47fdd1"},{"version":"f8b46fa94d5d9f71a17cd3e70691d4eba220ceef9991b06730ec38cb10915576","signature":"7943ed4df0c3c917039f2c5ac33c6ad929bba18d242871ea88fe2d0618414c51"},"f82348f8ac4f637d6ad76ef5d45577ccc0c59fbd25d8c44d55349a71a90e195a","8dfed5c91ad36e69e6da6b7e49be929d4e19666db2b651aa839c485170a2902c","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","d0b0a00cf31968a33baeaadf974ce4e5e7edf58cea5288765293f41ba5e72b3a","ff46d390cc6f5dc2963ff2c0c6352defb1046f6a44293d58e314ef7febca724e",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0133ebdd17a823ae56861948870cde4dac18dd8818ab641039c85bbb720429e0","0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","7d7c8ef7d48a035142c07dae60545ecc0e4af4c337742760cb09726f2f8e31db","ab9cce8526b1878586804696261de5505885a9b9bbe8af15e99b7387c81f2b6d","82772e5d55062a042a2715a555d347275a663940926fc785705eb082010cb9f6","0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4","affectsGlobalScope":true},"ccc94049a9841fe47abe5baef6be9a38fc6228807974ae675fb15dc22531b4be",{"version":"9acfe4d1ff027015151ce81d60797b04b52bffe97ad8310bb0ec2e8fd61e1303","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","2f520601649a893e6a49a8851ebfcf4be8ce090dc1281c2a08a871cb04e8251f","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","2b8c764f856a1dd0a9a2bf23e5efddbff157de8138b0754010be561ae5fcaa90","ad4b60488fb1e562bf375dac9299815f7028bf667d9b5887b2d01d501b7d1ddd","246341c3a7a2638cf830d690e69de1e6085a102c6a30596435b050e6ac86c11a","6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be",{"version":"4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c","affectsGlobalScope":true},"aa8fe22e10f78a67b2ffbcc614b45fe258ff9e71d53ddb56e75fa7883c530270","a049a59a02009fc023684fcfaf0ac526fe36c35dcc5d2b7d620c1750ba11b083","a361a26932d73497a174a6d48c53cfedb55f735f20e8638fdf7b25cdeaac9ca4","b287b810b5035d5685f1df6e1e418f1ca452a3ed4f59fd5cc081dbf2045f0d9b","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","a458dc78104cc80048ac24fdc02fe6dce254838094c2f25641b3f954d9721241",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"902cd98bf46e95caf4118a0733fb801e9e90eec3edaed6abdad77124afec9ca2","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","cd4854d38f4eb5592afd98ab95ca17389a7dfe38013d9079e802d739bdbcc939","94eed4cc2f5f658d5e229ff1ccd38860bddf4233e347bf78edd2154dee1f2b99",{"version":"e51bee3200733b1f58818b5a9ea90fcd61c5b8afa3a0378391991f3696826a65","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","d7838022c7dab596357a9604b9c6adffe37dc34085ce0779c958ce9545bd7139","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"a279435e7813d1f061c0cab6ab77b1b9377e8d96851e5ed4a76a1ce6eb6e628f","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637",{"version":"b42b47e17b8ece2424ae8039feb944c2e3ba4b262986aebd582e51efbdca93dc","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4","d88ecca73348e7c337541c4b8b60a50aca5e87384f6b8a422fc6603c637e4c21","badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"e6ef68f677c1b63967d87568043b8af9d2dfd71d5873acd1de3abeb1db606741","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0",{"version":"e9f2cdc4e98e73a606ff68c470a8cb4f23cd638c47649d71b90a2d9413102080","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","378df8bbbb9e3f6fca05d58f644aab538e1062eab5e778fb0b83d41125df246d","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","9fa6b83a35e897f340858995ca5d77e901d89fd18644cd4c9e8a4afe0b2e6363",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","f58599a92d4a64416f4999a4d7241e1647aec2a6249214892722f712a6eedbe0","50a5b297e6c91df4f6068d98467a5e7ba4eeb888b9376757734dd4b1dfcdacd4","1384902f0cccc5a9f9c0d65d93c093f6b9f77c949bf823f511b617cb8bc20fb5","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438"],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"downlevelIteration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"importsNotUsedAsValues":0,"jsx":2,"module":1,"newLine":1,"noEmitHelpers":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","rootDir":"..","skipLibCheck":true,"sourceMap":true,"strict":true,"stripInternal":true,"suppressExcessPropertyErrors":true,"suppressImplicitAnyIndexErrors":true,"target":5},"fileIdsList":[[114],[59,60,61,62,114],[59,114],[68,69,114],[65,66,67,68,114],[69,114],[87,114,121],[114,123],[114,124],[114,128,130,131,132,133,134,135,136,137,138,139,140],[114,128,129,131,132,133,134,135,136,137,138,139,140],[114,129,130,131,132,133,134,135,136,137,138,139,140],[114,128,129,130,132,133,134,135,136,137,138,139,140],[114,128,129,130,131,133,134,135,136,137,138,139,140],[114,128,129,130,131,132,134,135,136,137,138,139,140],[114,128,129,130,131,132,133,135,136,137,138,139,140],[114,128,129,130,131,132,133,134,136,137,138,139,140],[114,128,129,130,131,132,133,134,135,137,138,139,140],[114,128,129,130,131,132,133,134,135,136,138,139,140],[114,128,129,130,131,132,133,134,135,136,137,139,140],[114,128,129,130,131,132,133,134,135,136,137,138,140],[114,128,129,130,131,132,133,134,135,136,137,138,139],[71,114],[74,114],[75,80,114],[76,86,87,94,103,113,114],[76,77,86,94,114],[78,114],[79,80,87,95,114],[80,103,110,114],[81,83,86,94,114],[82,114],[83,84,114],[85,86,114],[86,114],[86,87,88,103,113,114],[86,87,88,103,114],[89,94,103,113,114],[86,87,89,90,94,103,110,113,114],[89,91,103,110,113,114],[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],[86,92,114],[93,113,114],[83,86,94,103,114],[95,114],[96,114],[74,97,114],[98,112,114,118],[99,114],[100,114],[86,101,114],[101,102,114,116],[86,103,104,105,114],[103,105,114],[103,104,114],[106,114],[107,114],[86,108,109,114],[108,109,114],[80,94,110,114],[111,114],[94,112,114],[75,89,100,113,114],[80,114],[103,114,115],[114,116],[114,117],[75,80,86,88,97,103,113,114,116,118],[103,114,119],[114,149],[49,114],[47,48,114],[47,114],[55,114],[46,50,53,54,56,87,96,114],[46,50,51,52,53,57,95,96,114],[59,60,61,62,114,151],[59,114,151],[114,152,153],[114,154],[50,53],[53]],"referencedMap":[[10,1],[11,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[33,1],[34,1],[35,1],[36,1],[7,1],[41,1],[37,1],[38,1],[39,1],[40,1],[8,1],[42,1],[43,1],[44,1],[1,1],[9,1],[45,1],[59,1],[63,2],[60,3],[61,3],[62,3],[64,1],[70,4],[65,1],[69,5],[66,6],[68,1],[122,7],[123,1],[124,8],[125,9],[126,1],[67,1],[127,1],[129,10],[130,11],[128,12],[131,13],[132,14],[133,15],[134,16],[135,17],[136,18],[137,19],[138,20],[139,21],[140,22],[141,1],[142,1],[55,1],[71,23],[72,23],[74,24],[75,25],[76,26],[77,27],[78,28],[79,29],[80,30],[81,31],[82,32],[83,33],[84,33],[85,34],[86,35],[87,36],[88,37],[73,1],[120,1],[89,38],[90,39],[91,40],[121,41],[92,42],[93,43],[94,44],[95,45],[96,46],[97,47],[98,48],[99,49],[100,50],[101,51],[102,52],[103,53],[105,54],[104,55],[106,56],[107,57],[108,58],[109,59],[110,60],[111,61],[112,62],[113,63],[114,64],[115,65],[116,66],[117,67],[118,68],[119,69],[143,1],[144,1],[145,1],[146,1],[147,1],[148,1],[149,1],[150,70],[50,71],[49,72],[48,73],[47,1],[51,1],[56,74],[54,1],[52,1],[46,1],[53,1],[57,75],[58,76]],"exportedModulesMap":[[10,1],[11,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[33,1],[34,1],[35,1],[36,1],[7,1],[41,1],[37,1],[38,1],[39,1],[40,1],[8,1],[42,1],[43,1],[44,1],[1,1],[9,1],[45,1],[59,1],[63,77],[60,3],[61,78],[62,3],[64,1],[70,4],[65,1],[69,5],[66,6],[68,1],[122,7],[123,1],[124,8],[125,9],[126,79],[67,1],[127,1],[129,10],[130,11],[128,12],[131,13],[132,14],[133,15],[134,16],[135,17],[136,18],[137,19],[138,20],[139,21],[140,22],[141,1],[142,1],[55,1],[71,23],[72,23],[74,24],[75,25],[76,26],[77,27],[78,28],[79,29],[80,30],[81,31],[82,32],[83,33],[84,33],[85,34],[86,35],[87,36],[88,37],[73,1],[120,1],[89,38],[90,39],[91,40],[121,41],[92,42],[93,43],[94,44],[95,45],[96,46],[97,47],[98,48],[99,49],[100,50],[101,51],[102,52],[103,53],[105,54],[104,55],[106,56],[107,57],[108,58],[109,59],[110,60],[111,61],[112,62],[113,63],[114,64],[115,65],[116,66],[117,67],[118,68],[119,69],[143,1],[144,1],[145,1],[146,1],[147,80],[148,1],[149,1],[150,70],[50,71],[49,72],[48,73],[47,1],[51,1],[56,74],[54,1],[52,1],[46,1],[53,1],[57,81],[58,82]],"semanticDiagnosticsPerFile":[10,11,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,33,34,35,36,7,41,37,38,39,40,8,42,43,44,1,9,45,59,63,60,61,62,64,70,65,69,66,68,122,123,124,125,126,67,127,129,130,128,131,132,133,134,135,136,137,138,139,140,141,142,55,71,72,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,73,120,89,90,91,121,92,93,94,95,96,97,98,99,100,101,102,103,105,104,106,107,108,109,110,111,112,113,114,115,116,117,118,119,143,144,145,146,147,148,149,150,50,49,48,47,51,56,54,52,46,53,57,58]},"version":"4.4.4"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swc-node/register",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.7",
|
|
4
4
|
"description": "SWC node register",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"swc",
|
|
@@ -39,14 +39,16 @@
|
|
|
39
39
|
"url": "https://github.com/Brooooooklyn/swc-node/issues"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@swc-node/core": "^1.
|
|
43
|
-
"@swc-node/sourcemap-support": "^0.1.
|
|
44
|
-
"chalk": "^4.1.
|
|
42
|
+
"@swc-node/core": "^1.7.1",
|
|
43
|
+
"@swc-node/sourcemap-support": "^0.1.10",
|
|
44
|
+
"chalk": "^4.1.2",
|
|
45
45
|
"debug": "^4.3.2",
|
|
46
46
|
"pirates": "^4.0.1",
|
|
47
|
-
"
|
|
47
|
+
"tslib": "^2.3.1",
|
|
48
|
+
"typescript": "^4.4.4"
|
|
48
49
|
},
|
|
49
50
|
"devDependencies": {
|
|
51
|
+
"@swc/core": "^1.2.104",
|
|
50
52
|
"@types/debug": "^4.1.7"
|
|
51
53
|
},
|
|
52
54
|
"funding": {
|
|
@@ -62,5 +64,5 @@
|
|
|
62
64
|
},
|
|
63
65
|
"./register": "./lib/register.js"
|
|
64
66
|
},
|
|
65
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "2e7bcba5bc0173dc5f2c1e3a06fa2a9571555f23"
|
|
66
68
|
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,205 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
-
|
|
6
|
-
## [1.3.3](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@1.3.2...@swc-node/register@1.3.3) (2021-08-01)
|
|
7
|
-
|
|
8
|
-
### Bug Fixes
|
|
9
|
-
|
|
10
|
-
- **register:** make typescript a dependency ([#563](https://github.com/Brooooooklyn/swc-node/issues/563)) ([9152f74](https://github.com/Brooooooklyn/swc-node/commit/9152f74c8494a603315a0bcfd6f05e9a691879d2))
|
|
11
|
-
|
|
12
|
-
## [1.3.2](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@1.3.1...@swc-node/register@1.3.2) (2021-06-07)
|
|
13
|
-
|
|
14
|
-
### Bug Fixes
|
|
15
|
-
|
|
16
|
-
- **register:** always enable dynamicImport ([0eb1bf2](https://github.com/Brooooooklyn/swc-node/commit/0eb1bf2e0bce97ca70d72dc13c51c8eac221029d))
|
|
17
|
-
|
|
18
|
-
## [1.3.1](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@1.3.0...@swc-node/register@1.3.1) (2021-05-23)
|
|
19
|
-
|
|
20
|
-
### Bug Fixes
|
|
21
|
-
|
|
22
|
-
- **register:** exports field in package.json ([bd0459d](https://github.com/Brooooooklyn/swc-node/commit/bd0459da56930bf0334bcb5cc5059edfec9fa99c))
|
|
23
|
-
|
|
24
|
-
# [1.3.0](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@1.2.1...@swc-node/register@1.3.0) (2021-05-21)
|
|
25
|
-
|
|
26
|
-
### Features
|
|
27
|
-
|
|
28
|
-
- **loader:** implement tsconfig compatible loader ([8c1cd85](https://github.com/Brooooooklyn/swc-node/commit/8c1cd858a64a6b6ec6ff23811bafab7dfe30554d))
|
|
29
|
-
|
|
30
|
-
## [1.2.1](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@1.2.0...@swc-node/register@1.2.1) (2021-04-29)
|
|
31
|
-
|
|
32
|
-
### Bug Fixes
|
|
33
|
-
|
|
34
|
-
- **register:** 'both' value is not valid sourcemaps config ([38207d5](https://github.com/Brooooooklyn/swc-node/commit/38207d52fd55c0157319370e3857d5372cb697ba))
|
|
35
|
-
|
|
36
|
-
# [1.2.0](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@1.1.0...@swc-node/register@1.2.0) (2021-04-28)
|
|
37
|
-
|
|
38
|
-
### Features
|
|
39
|
-
|
|
40
|
-
- **core:** expose inline and both config for sourcemap ([780f2bb](https://github.com/Brooooooklyn/swc-node/commit/780f2bb81053af6fc6af865a979059ffff470eac))
|
|
41
|
-
|
|
42
|
-
# [1.1.0](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@1.0.5...@swc-node/register@1.1.0) (2021-04-21)
|
|
43
|
-
|
|
44
|
-
### Features
|
|
45
|
-
|
|
46
|
-
- **register:** use keepClassNames: true by default ([5936616](https://github.com/Brooooooklyn/swc-node/commit/59366169c700544bf287b7a68e883efaaad6806b))
|
|
47
|
-
|
|
48
|
-
## [1.0.5](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@1.0.4...@swc-node/register@1.0.5) (2021-03-04)
|
|
49
|
-
|
|
50
|
-
**Note:** Version bump only for package @swc-node/register
|
|
51
|
-
|
|
52
|
-
## [1.0.4](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@1.0.3...@swc-node/register@1.0.4) (2021-01-25)
|
|
53
|
-
|
|
54
|
-
### Bug Fixes
|
|
55
|
-
|
|
56
|
-
- adhere to ReactConfig type ([8d44f6a](https://github.com/Brooooooklyn/swc-node/commit/8d44f6ad067a833dfc461f5eb8a2c5491d968810))
|
|
57
|
-
- support custom jsx pragma ([3b98312](https://github.com/Brooooooklyn/swc-node/commit/3b983121fecd666eef0ae6ff8c4f1df19563fca8))
|
|
58
|
-
|
|
59
|
-
## [1.0.3](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@1.0.2...@swc-node/register@1.0.3) (2021-01-04)
|
|
60
|
-
|
|
61
|
-
**Note:** Version bump only for package @swc-node/register
|
|
62
|
-
|
|
63
|
-
## [1.0.2](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@1.0.1...@swc-node/register@1.0.2) (2020-11-18)
|
|
64
|
-
|
|
65
|
-
### Bug Fixes
|
|
66
|
-
|
|
67
|
-
- **register:** handle absolute file paths ([f21a48a](https://github.com/Brooooooklyn/swc-node/commit/f21a48a5a3150ce388a695bf8e36d5d8a64895db))
|
|
68
|
-
|
|
69
|
-
## [1.0.1](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@1.0.0...@swc-node/register@1.0.1) (2020-10-21)
|
|
70
|
-
|
|
71
|
-
**Note:** Version bump only for package @swc-node/register
|
|
72
|
-
|
|
73
|
-
## [0.5.3](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@0.5.2...@swc-node/register@0.5.3) (2020-09-18)
|
|
74
|
-
|
|
75
|
-
### Bug Fixes
|
|
76
|
-
|
|
77
|
-
- **register:** integrate tests ([b012869](https://github.com/Brooooooklyn/swc-node/commit/b0128698e7274d37856e2593849d58f67e9e302b))
|
|
78
|
-
|
|
79
|
-
## [0.5.2](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@0.5.1...@swc-node/register@0.5.2) (2020-09-18)
|
|
80
|
-
|
|
81
|
-
### Bug Fixes
|
|
82
|
-
|
|
83
|
-
- **register:** remove .d.ts from extensions ([62b6a69](https://github.com/Brooooooklyn/swc-node/commit/62b6a69704d9a2f908489728bfbd41b24672612e))
|
|
84
|
-
|
|
85
|
-
## [0.5.1](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@0.5.0...@swc-node/register@0.5.1) (2020-09-17)
|
|
86
|
-
|
|
87
|
-
### Bug Fixes
|
|
88
|
-
|
|
89
|
-
- **register:** add fastpath to handle .d.ts file ([afe4ca9](https://github.com/Brooooooklyn/swc-node/commit/afe4ca921985ecce907cb752fb674c8278041bc0))
|
|
90
|
-
|
|
91
|
-
# [0.5.0](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@0.4.10...@swc-node/register@0.5.0) (2020-09-16)
|
|
92
|
-
|
|
93
|
-
### Features
|
|
94
|
-
|
|
95
|
-
- **register:** support read include/exclude config from tsconfig ([0dec2cd](https://github.com/Brooooooklyn/swc-node/commit/0dec2cdcf002c361abef068cf227a8bfe6cdea2a))
|
|
96
|
-
|
|
97
|
-
## [0.4.11](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@0.4.10...@swc-node/register@0.4.11) (2020-09-13)
|
|
98
|
-
|
|
99
|
-
**Note:** Version bump only for package @swc-node/register
|
|
100
|
-
|
|
101
|
-
## [0.4.10](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@0.4.9...@swc-node/register@0.4.10) (2020-09-11)
|
|
102
|
-
|
|
103
|
-
### Bug Fixes
|
|
104
|
-
|
|
105
|
-
- **core:** add support for esModuleInterop ([a7f3331](https://github.com/Brooooooklyn/swc-node/commit/a7f3331f06d597e39cb44be8a8d73f264a417a71))
|
|
106
|
-
|
|
107
|
-
## [0.4.9](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@0.4.8...@swc-node/register@0.4.9) (2020-09-09)
|
|
108
|
-
|
|
109
|
-
**Note:** Version bump only for package @swc-node/register
|
|
110
|
-
|
|
111
|
-
## [0.4.8](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@0.4.7...@swc-node/register@0.4.8) (2020-09-07)
|
|
112
|
-
|
|
113
|
-
**Note:** Version bump only for package @swc-node/register
|
|
114
|
-
|
|
115
|
-
## [0.4.7](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@0.4.6...@swc-node/register@0.4.7) (2020-09-06)
|
|
116
|
-
|
|
117
|
-
**Note:** Version bump only for package @swc-node/register
|
|
118
|
-
|
|
119
|
-
## [0.4.6](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@0.4.5...@swc-node/register@0.4.6) (2020-09-04)
|
|
120
|
-
|
|
121
|
-
**Note:** Version bump only for package @swc-node/register
|
|
122
|
-
|
|
123
|
-
## [0.4.5](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@0.4.4...@swc-node/register@0.4.5) (2020-09-01)
|
|
124
|
-
|
|
125
|
-
**Note:** Version bump only for package @swc-node/register
|
|
126
|
-
|
|
127
|
-
## [0.4.4](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@0.4.2...@swc-node/register@0.4.4) (2020-08-31)
|
|
128
|
-
|
|
129
|
-
**Note:** Version bump only for package @swc-node/register
|
|
130
|
-
|
|
131
|
-
## [0.4.3](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@0.4.2...@swc-node/register@0.4.3) (2020-08-28)
|
|
132
|
-
|
|
133
|
-
**Note:** Version bump only for package @swc-node/register
|
|
134
|
-
|
|
135
|
-
## [0.4.2](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@0.4.1...@swc-node/register@0.4.2) (2020-08-24)
|
|
136
|
-
|
|
137
|
-
**Note:** Version bump only for package @swc-node/register
|
|
138
|
-
|
|
139
|
-
## [0.4.1](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@0.4.0...@swc-node/register@0.4.1) (2020-08-23)
|
|
140
|
-
|
|
141
|
-
### Bug Fixes
|
|
142
|
-
|
|
143
|
-
- **register:** should not install sourcemap if sourcemap is undefined ([517f927](https://github.com/Brooooooklyn/swc-node/commit/517f927d20f79c8bbcd81bb6d445c52b0602f203))
|
|
144
|
-
|
|
145
|
-
# [0.4.0](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@0.3.4...@swc-node/register@0.4.0) (2020-08-23)
|
|
146
|
-
|
|
147
|
-
### Bug Fixes
|
|
148
|
-
|
|
149
|
-
- **register:** missing register.js file in package.json ([366d370](https://github.com/Brooooooklyn/swc-node/commit/366d3706af778e47f0427f92fe1a171cd43e2a62))
|
|
150
|
-
|
|
151
|
-
### BREAKING CHANGES
|
|
152
|
-
|
|
153
|
-
- **register:** missing files
|
|
154
|
-
|
|
155
|
-
## [0.3.4](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@0.3.3...@swc-node/register@0.3.4) (2020-08-23)
|
|
156
|
-
|
|
157
|
-
**Note:** Version bump only for package @swc-node/register
|
|
158
|
-
|
|
159
|
-
## [0.3.3](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@0.3.2...@swc-node/register@0.3.3) (2020-08-21)
|
|
160
|
-
|
|
161
|
-
**Note:** Version bump only for package @swc-node/register
|
|
162
|
-
|
|
163
|
-
## [0.3.2](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@0.3.1...@swc-node/register@0.3.2) (2020-08-20)
|
|
164
|
-
|
|
165
|
-
**Note:** Version bump only for package @swc-node/register
|
|
166
|
-
|
|
167
|
-
## [0.3.1](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@0.3.0...@swc-node/register@0.3.1) (2020-08-20)
|
|
168
|
-
|
|
169
|
-
**Note:** Version bump only for package @swc-node/register
|
|
170
|
-
|
|
171
|
-
## [0.3.0](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@0.2.6...@swc-node/register@0.3.0) (2020-08-20)
|
|
172
|
-
|
|
173
|
-
### BREAKING CHANGE
|
|
174
|
-
|
|
175
|
-
- **register:** respect tsconfig.json in SWC_NODE_PROJECT
|
|
176
|
-
|
|
177
|
-
## [0.2.6](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@0.2.5...@swc-node/register@0.2.6) (2020-08-18)
|
|
178
|
-
|
|
179
|
-
**Note:** Version bump only for package @swc-node/register
|
|
180
|
-
|
|
181
|
-
## [0.2.5](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@0.2.4...@swc-node/register@0.2.5) (2020-08-14)
|
|
182
|
-
|
|
183
|
-
**Note:** Version bump only for package @swc-node/register
|
|
184
|
-
|
|
185
|
-
## [0.2.4](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@0.2.3...@swc-node/register@0.2.4) (2020-08-13)
|
|
186
|
-
|
|
187
|
-
**Note:** Version bump only for package @swc-node/register
|
|
188
|
-
|
|
189
|
-
## [0.2.3](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@0.2.2...@swc-node/register@0.2.3) (2020-08-10)
|
|
190
|
-
|
|
191
|
-
**Note:** Version bump only for package @swc-node/register
|
|
192
|
-
|
|
193
|
-
## [0.2.2](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@0.2.1...@swc-node/register@0.2.2) (2020-08-10)
|
|
194
|
-
|
|
195
|
-
**Note:** Version bump only for package @swc-node/register
|
|
196
|
-
|
|
197
|
-
## [0.2.1](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@0.2.0...@swc-node/register@0.2.1) (2020-08-09)
|
|
198
|
-
|
|
199
|
-
**Note:** Version bump only for package @swc-node/register
|
|
200
|
-
|
|
201
|
-
# [0.2.0](https://github.com/Brooooooklyn/swc-node/compare/@swc-node/register@0.1.12...@swc-node/register@0.2.0) (2020-08-09)
|
|
202
|
-
|
|
203
|
-
### Features
|
|
204
|
-
|
|
205
|
-
- **core:** add support for emitDecoratorMetadata ([edd2fd5](https://github.com/Brooooooklyn/swc-node/commit/edd2fd575bf43bf4206a49b5b078945de5eae95a))
|