@bikky/compiler 0.0.5 → 0.0.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/Source/ASTHelper.js +30 -16
- package/Transformers/MacroTransformer.js +5 -2
- package/Transformers/MixinTransformer.js +22 -18
- package/Transformers/SuperTransform.js +5 -2
- package/package.json +3 -3
- package/{tsconfig.build.json → tsconfig.build.libs.json} +3 -1
- package/tsconfig.build.libs.tsbuildinfo +1 -0
- package/tsconfig.build.src.json +23 -0
- package/tsconfig.build.src.tsbuildinfo +1 -0
package/Source/ASTHelper.js
CHANGED
|
@@ -1,14 +1,20 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Printer = exports.logError = exports.SourceFile = exports.ClassDeclaration = exports.AccessExpression = exports.CallExpression = exports.PropertyDeclaration = exports.VariableDeclaration = exports.NamedExpression = exports.StaticModifier = exports.StringLiteral = exports.Identifier = void 0;
|
|
4
|
+
const ts = require("typescript");
|
|
5
|
+
function Identifier(context, name) {
|
|
3
6
|
return context.factory.createIdentifier(name);
|
|
4
7
|
}
|
|
5
|
-
|
|
8
|
+
exports.Identifier = Identifier;
|
|
9
|
+
function StringLiteral(context, name) {
|
|
6
10
|
return context.factory.createStringLiteral(name);
|
|
7
11
|
}
|
|
8
|
-
|
|
12
|
+
exports.StringLiteral = StringLiteral;
|
|
13
|
+
function StaticModifier(context) {
|
|
9
14
|
return context.factory.createModifiersFromModifierFlags(ts.ModifierFlags.Static)[0];
|
|
10
15
|
}
|
|
11
|
-
|
|
16
|
+
exports.StaticModifier = StaticModifier;
|
|
17
|
+
class NamedExpression {
|
|
12
18
|
constructor(name) {
|
|
13
19
|
this.name = name;
|
|
14
20
|
}
|
|
@@ -20,7 +26,8 @@ export class NamedExpression {
|
|
|
20
26
|
return this;
|
|
21
27
|
}
|
|
22
28
|
}
|
|
23
|
-
|
|
29
|
+
exports.NamedExpression = NamedExpression;
|
|
30
|
+
class VariableDeclaration extends NamedExpression {
|
|
24
31
|
constructor() {
|
|
25
32
|
super(...arguments);
|
|
26
33
|
this.modifiers = [];
|
|
@@ -40,6 +47,7 @@ export class VariableDeclaration extends NamedExpression {
|
|
|
40
47
|
return context.factory.createVariableStatement(this.modifiers, context.factory.createVariableDeclarationList([context.factory.createVariableDeclaration(this.name, undefined, undefined, this.value)]));
|
|
41
48
|
}
|
|
42
49
|
}
|
|
50
|
+
exports.VariableDeclaration = VariableDeclaration;
|
|
43
51
|
(function (VariableDeclaration) {
|
|
44
52
|
function from(variable) {
|
|
45
53
|
var result = new VariableDeclaration(variable.name);
|
|
@@ -48,8 +56,8 @@ export class VariableDeclaration extends NamedExpression {
|
|
|
48
56
|
return result;
|
|
49
57
|
}
|
|
50
58
|
VariableDeclaration.from = from;
|
|
51
|
-
})(VariableDeclaration || (VariableDeclaration = {}));
|
|
52
|
-
|
|
59
|
+
})(VariableDeclaration = exports.VariableDeclaration || (exports.VariableDeclaration = {}));
|
|
60
|
+
class PropertyDeclaration extends VariableDeclaration {
|
|
53
61
|
//Property declarations can support a few more name types than normal variables.
|
|
54
62
|
constructor(name) {
|
|
55
63
|
super(name);
|
|
@@ -58,6 +66,7 @@ export class PropertyDeclaration extends VariableDeclaration {
|
|
|
58
66
|
return context.factory.createPropertyDeclaration([], this.modifiers, this.name, undefined, undefined, this.value);
|
|
59
67
|
}
|
|
60
68
|
}
|
|
69
|
+
exports.PropertyDeclaration = PropertyDeclaration;
|
|
61
70
|
(function (PropertyDeclaration) {
|
|
62
71
|
function from(variable) {
|
|
63
72
|
var result = new PropertyDeclaration(variable.name);
|
|
@@ -66,8 +75,8 @@ export class PropertyDeclaration extends VariableDeclaration {
|
|
|
66
75
|
return result;
|
|
67
76
|
}
|
|
68
77
|
PropertyDeclaration.from = from;
|
|
69
|
-
})(PropertyDeclaration || (PropertyDeclaration = {}));
|
|
70
|
-
|
|
78
|
+
})(PropertyDeclaration = exports.PropertyDeclaration || (exports.PropertyDeclaration = {}));
|
|
79
|
+
class CallExpression extends NamedExpression {
|
|
71
80
|
constructor() {
|
|
72
81
|
super(...arguments);
|
|
73
82
|
this.arguments = [];
|
|
@@ -80,8 +89,9 @@ export class CallExpression extends NamedExpression {
|
|
|
80
89
|
return context.factory.createCallExpression(this.name, undefined, this.arguments);
|
|
81
90
|
}
|
|
82
91
|
}
|
|
92
|
+
exports.CallExpression = CallExpression;
|
|
83
93
|
//this[super].function.call(this, arguments);
|
|
84
|
-
|
|
94
|
+
class AccessExpression {
|
|
85
95
|
constructor(context) {
|
|
86
96
|
this.context = context;
|
|
87
97
|
}
|
|
@@ -117,7 +127,8 @@ export class AccessExpression {
|
|
|
117
127
|
return this.chain;
|
|
118
128
|
}
|
|
119
129
|
}
|
|
120
|
-
|
|
130
|
+
exports.AccessExpression = AccessExpression;
|
|
131
|
+
class ClassDeclaration extends NamedExpression {
|
|
121
132
|
constructor() {
|
|
122
133
|
super(...arguments);
|
|
123
134
|
this.decorators = [];
|
|
@@ -261,7 +272,8 @@ export class ClassDeclaration extends NamedExpression {
|
|
|
261
272
|
return ts.visitEachChild(this.original, replaceExports, context, replaceNodeArrays);
|
|
262
273
|
}
|
|
263
274
|
}
|
|
264
|
-
|
|
275
|
+
exports.ClassDeclaration = ClassDeclaration;
|
|
276
|
+
class SourceFile {
|
|
265
277
|
constructor() {
|
|
266
278
|
this.statements = [];
|
|
267
279
|
}
|
|
@@ -298,7 +310,8 @@ export class SourceFile {
|
|
|
298
310
|
return newSource;
|
|
299
311
|
}
|
|
300
312
|
}
|
|
301
|
-
|
|
313
|
+
exports.SourceFile = SourceFile;
|
|
314
|
+
function logError(node, error) {
|
|
302
315
|
if (!node || !node.getSourceFile()) {
|
|
303
316
|
console.error("Why are we here?");
|
|
304
317
|
return;
|
|
@@ -312,7 +325,8 @@ export function logError(node, error) {
|
|
|
312
325
|
//ts.createThrow(ts.createStringLiteral("Compiler Error."));
|
|
313
326
|
return;
|
|
314
327
|
}
|
|
315
|
-
|
|
328
|
+
exports.logError = logError;
|
|
329
|
+
var Printer;
|
|
316
330
|
(function (Printer) {
|
|
317
331
|
var printer = ts.createPrinter();
|
|
318
332
|
function printNode(node, sourceFile) {
|
|
@@ -326,5 +340,5 @@ export var Printer;
|
|
|
326
340
|
return code.replace(/\r\n.*/gi, "");
|
|
327
341
|
}
|
|
328
342
|
Printer.printNodeFirstLine = printNodeFirstLine;
|
|
329
|
-
})(Printer || (Printer = {}));
|
|
343
|
+
})(Printer = exports.Printer || (exports.Printer = {}));
|
|
330
344
|
//# sourceMappingURL=ASTHelper.js.map
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
3
|
// transformer1-module
|
|
2
|
-
|
|
4
|
+
const ts = require("typescript");
|
|
3
5
|
//This class should be able to do a few things:
|
|
4
6
|
// Import macros from other files.
|
|
5
7
|
// Copy macro AST
|
|
@@ -259,7 +261,7 @@ class MacroTransformer {
|
|
|
259
261
|
// the import statement if the only thing that's imported is macros. On second thought that last part is really hard so let's not
|
|
260
262
|
// do that.
|
|
261
263
|
var transformer = new MacroTransformer();
|
|
262
|
-
|
|
264
|
+
function default_1(program, pluginOptions) {
|
|
263
265
|
return (context) => {
|
|
264
266
|
transformer.context = context;
|
|
265
267
|
return (sourceFile) => {
|
|
@@ -267,4 +269,5 @@ export default function (program, pluginOptions) {
|
|
|
267
269
|
};
|
|
268
270
|
};
|
|
269
271
|
}
|
|
272
|
+
exports.default = default_1;
|
|
270
273
|
//# sourceMappingURL=MacroTransformer.js.map
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const ts = require("typescript");
|
|
4
|
+
const ASTHelper_js_1 = require("../Source/ASTHelper.js");
|
|
3
5
|
//This transform replaces super. usage with this.parent.
|
|
4
6
|
// - this is to make sure macros work properly.
|
|
5
7
|
var mixMakerName = "Mixable";
|
|
@@ -18,16 +20,16 @@ var MixinMagicNumbers = {
|
|
|
18
20
|
function MixClass(context, RawClass, symbolName) {
|
|
19
21
|
//Add symbol definition to the top of the file.
|
|
20
22
|
var computedSymbolName = context.factory.createComputedPropertyName(symbolName);
|
|
21
|
-
var Class = ClassDeclaration.from(RawClass);
|
|
23
|
+
var Class = ASTHelper_js_1.ClassDeclaration.from(RawClass);
|
|
22
24
|
if (!Class.hasExtends()) {
|
|
23
|
-
logError(RawClass, "Mixins need to extend from something");
|
|
25
|
+
(0, ASTHelper_js_1.logError)(RawClass, "Mixins need to extend from something");
|
|
24
26
|
return RawClass;
|
|
25
27
|
}
|
|
26
28
|
//Remove Decorator.
|
|
27
29
|
Class.removeDecorator("mixin");
|
|
28
30
|
//Store the symbol statically on the class so we can access it in the mixin maker.
|
|
29
|
-
var declareStaticSymbol = (new PropertyDeclaration(Identifier(context, "Super"))
|
|
30
|
-
.addModifier(StaticModifier(context))
|
|
31
|
+
var declareStaticSymbol = (new ASTHelper_js_1.PropertyDeclaration((0, ASTHelper_js_1.Identifier)(context, "Super"))
|
|
32
|
+
.addModifier((0, ASTHelper_js_1.StaticModifier)(context))
|
|
31
33
|
.setValue(symbolName));
|
|
32
34
|
Class.addMemberAtStart(declareStaticSymbol.make(context));
|
|
33
35
|
//Can't add prototype manually because it will override the prototype provided by MixinCode.ts (because the constructor
|
|
@@ -35,7 +37,7 @@ function MixClass(context, RawClass, symbolName) {
|
|
|
35
37
|
//var declareSuperPrototype = (new PropertyDeclaration(computedSymbolName))
|
|
36
38
|
// .setValue(Class.getExtends()!);
|
|
37
39
|
//Class.addMemberAtStart(declareSuperPrototype.make(context));
|
|
38
|
-
Class.setExtends((new CallExpression(Identifier(context, mixMakerName))
|
|
40
|
+
Class.setExtends((new ASTHelper_js_1.CallExpression((0, ASTHelper_js_1.Identifier)(context, mixMakerName))
|
|
39
41
|
.addArgument(Class.getExtends())).make(context));
|
|
40
42
|
var newRawClass = Class.update(context);
|
|
41
43
|
newRawClass = ts.visitNode(newRawClass, ReplaceSuper(Class.getName(), symbolName, context));
|
|
@@ -45,12 +47,12 @@ function MixClass(context, RawClass, symbolName) {
|
|
|
45
47
|
function ReplaceSuper(classID, computedSuperID, context) {
|
|
46
48
|
var className = classID.text;
|
|
47
49
|
return (node) => {
|
|
48
|
-
return ClassDeclaration.eachContextualNode(node, (node) => {
|
|
50
|
+
return ASTHelper_js_1.ClassDeclaration.eachContextualNode(node, (node) => {
|
|
49
51
|
//check to see if node chain represents this.method().
|
|
50
52
|
if (ts.isCallExpression(node) && ts.isPropertyAccessExpression(node.expression) && node.expression.expression.kind === ts.SyntaxKind.SuperKeyword) {
|
|
51
53
|
var f = context.factory;
|
|
52
|
-
var access = (new AccessExpression(context)).this().access(computedSuperID)
|
|
53
|
-
/*.access(f.createIdentifier("prototype"))*/ .access(f.createIdentifier(node.expression.name.text)).access((new CallExpression(f.createIdentifier("call")))
|
|
54
|
+
var access = (new ASTHelper_js_1.AccessExpression(context)).this().access(computedSuperID)
|
|
55
|
+
/*.access(f.createIdentifier("prototype"))*/ .access(f.createIdentifier(node.expression.name.text)).access((new ASTHelper_js_1.CallExpression(f.createIdentifier("call")))
|
|
54
56
|
.addArgument(f.createThis())
|
|
55
57
|
.addArgument(...Array.from(node.arguments)).make(context));
|
|
56
58
|
//this[super].prototype.method.call(this, arguments);
|
|
@@ -74,17 +76,18 @@ class MixinSource {
|
|
|
74
76
|
}
|
|
75
77
|
//Look for a class with the @mixin decorator!
|
|
76
78
|
update(context) {
|
|
79
|
+
var _a;
|
|
77
80
|
this.context = context;
|
|
78
81
|
var declarations = [];
|
|
79
82
|
var crawl = (node) => {
|
|
80
83
|
if (node.kind === ts.SyntaxKind.ClassDeclaration) {
|
|
81
|
-
var Class = ClassDeclaration.from(node);
|
|
84
|
+
var Class = ASTHelper_js_1.ClassDeclaration.from(node);
|
|
82
85
|
if (Class.hasDecorator("mixin")) {
|
|
83
86
|
var name = Class.getName().text;
|
|
84
|
-
var symbolName = Identifier(context, "Super_" + declarations.length);
|
|
85
|
-
var declareSuperSymbol = (new VariableDeclaration(symbolName))
|
|
86
|
-
.setValue((new CallExpression(Identifier(context, "Symbol")))
|
|
87
|
-
.addArgument(StringLiteral(context, "super_" + name))
|
|
87
|
+
var symbolName = (0, ASTHelper_js_1.Identifier)(context, "Super_" + declarations.length);
|
|
88
|
+
var declareSuperSymbol = (new ASTHelper_js_1.VariableDeclaration(symbolName))
|
|
89
|
+
.setValue((new ASTHelper_js_1.CallExpression((0, ASTHelper_js_1.Identifier)(context, "Symbol")))
|
|
90
|
+
.addArgument((0, ASTHelper_js_1.StringLiteral)(context, "super_" + name))
|
|
88
91
|
.make(context)).make(context);
|
|
89
92
|
declarations.push(declareSuperSymbol);
|
|
90
93
|
var test = MixClass(this.context, node, symbolName);
|
|
@@ -94,14 +97,14 @@ class MixinSource {
|
|
|
94
97
|
return ts.visitEachChild(node, crawl, this.context);
|
|
95
98
|
};
|
|
96
99
|
var source = ts.visitNode(this.sourceFile, crawl);
|
|
97
|
-
var file = SourceFile.from(source);
|
|
100
|
+
var file = ASTHelper_js_1.SourceFile.from(source);
|
|
98
101
|
for (var declaration of declarations) {
|
|
99
102
|
file.insertUnderImports(declaration);
|
|
100
103
|
}
|
|
101
104
|
var result = file.update(context);
|
|
102
105
|
this.sourceFile = result;
|
|
103
106
|
if (declarations.length > 0) {
|
|
104
|
-
console.log("Updated file", file.original
|
|
107
|
+
console.log("Updated file", (_a = file.original) === null || _a === void 0 ? void 0 : _a.fileName, "with mixin data");
|
|
105
108
|
// console.log("~~~~~~~~~~~");
|
|
106
109
|
// console.log(Printer.printNode(result, this.sourceFile));
|
|
107
110
|
// console.log("~~~~~~~~~~~");
|
|
@@ -109,7 +112,7 @@ class MixinSource {
|
|
|
109
112
|
return result;
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
|
-
|
|
115
|
+
function default_1(program, pluginOptions) {
|
|
113
116
|
return (context) => {
|
|
114
117
|
return (sourceFile) => {
|
|
115
118
|
return (new MixinSource(sourceFile)).update(context);
|
|
@@ -117,4 +120,5 @@ export default function (program, pluginOptions) {
|
|
|
117
120
|
};
|
|
118
121
|
};
|
|
119
122
|
}
|
|
123
|
+
exports.default = default_1;
|
|
120
124
|
//# sourceMappingURL=MixinTransformer.js.map
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
3
|
// transformer1-module
|
|
2
|
-
|
|
4
|
+
const ts = require("typescript");
|
|
3
5
|
class SuperTransformer {
|
|
4
6
|
constructor(line, context, iter) {
|
|
5
7
|
this.has_super = false;
|
|
@@ -53,7 +55,7 @@ class SuperTransformer {
|
|
|
53
55
|
return result;
|
|
54
56
|
}
|
|
55
57
|
}
|
|
56
|
-
|
|
58
|
+
function default_1(program, pluginOptions) {
|
|
57
59
|
return (context) => {
|
|
58
60
|
return (sourceFile) => {
|
|
59
61
|
var parent = {
|
|
@@ -110,5 +112,6 @@ export default function (program, pluginOptions) {
|
|
|
110
112
|
};
|
|
111
113
|
};
|
|
112
114
|
}
|
|
115
|
+
exports.default = default_1;
|
|
113
116
|
console.log("SHOTO!");
|
|
114
117
|
//# sourceMappingURL=SuperTransform.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bikky/compiler",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"description": "Typescript modified for compiling space squad",
|
|
5
5
|
"main": "./Libraries/BiscuitLibraries.js",
|
|
6
6
|
"author": {
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"typescript": "^4.3.5"
|
|
15
15
|
},
|
|
16
16
|
"scripts": {
|
|
17
|
-
"build": "tsc --build tsconfig.build.json",
|
|
18
|
-
"clean": "tsc --build --clean tsconfig.build.json",
|
|
17
|
+
"build": "tsc --build tsconfig.build.libs.json && tsc --build tsconfig.build.src.json",
|
|
18
|
+
"clean": "tsc --build --clean tsconfig.build.libs.json && tsc --build --clean tsconfig.build.src.json",
|
|
19
19
|
"install": "npx ts-patch install && npx ts-patch patch tsserverlibrary.js && npx ts-patch patch tsserver.js && npx ts-patch patch typescriptServices.js",
|
|
20
20
|
"uninstall": "npx ts-patch uninstall && npx ts-patch unpatch tsserverlibrary.js && npx ts-patch unpatch tsserver.js && npx ts-patch unpatch typescriptServices.js"
|
|
21
21
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"program":{"fileNames":["./node_modules/typescript/lib/lib.es5.d.ts","./node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/typescript/lib/lib.es2018.d.ts","./node_modules/typescript/lib/lib.es2019.d.ts","./node_modules/typescript/lib/lib.es2020.d.ts","./node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","./node_modules/typescript/lib/lib.es2018.intl.d.ts","./node_modules/typescript/lib/lib.es2018.promise.d.ts","./node_modules/typescript/lib/lib.es2018.regexp.d.ts","./node_modules/typescript/lib/lib.es2019.array.d.ts","./node_modules/typescript/lib/lib.es2019.object.d.ts","./node_modules/typescript/lib/lib.es2019.string.d.ts","./node_modules/typescript/lib/lib.es2019.symbol.d.ts","./node_modules/typescript/lib/lib.es2019.intl.d.ts","./node_modules/typescript/lib/lib.es2020.bigint.d.ts","./node_modules/typescript/lib/lib.es2020.date.d.ts","./node_modules/typescript/lib/lib.es2020.promise.d.ts","./node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2020.string.d.ts","./node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2020.intl.d.ts","./node_modules/typescript/lib/lib.es2020.number.d.ts","./node_modules/typescript/lib/lib.esnext.intl.d.ts","./libraries/globaltypes.d.ts","./libraries/mixincode.ts","./libraries/biscuitlibraries.ts","./node_modules/@types/node/assert.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/dns.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/string_decoder.d.ts","./node_modules/@types/node/timers.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"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},{"version":"ac710b1c2ab586ceb3ef80f3e68ff1230666385216e1f1b85821cf84bf8b626f","affectsGlobalScope":true},{"version":"5adc3db730f8e846ad52d8923843a7e6774cde5f4c49d54939d30e8d072299a1","signature":"86efbbbe8a01a919f1d5eb3dfff87791c998e1ed9e8773c0d7d23a1de2f3c6e8"},{"version":"19edd6e2e2d70eb28af49621792efa22a8bc633925822536510a2d0a79c455f9","signature":"fe3e2bf22218546038ab7eae863073c28552450dc1a73b0f98a8ef7cbb10f7da"},"4c2c4f53e8eedd970f8afa369d7371544fb6231bf95e659f8602e09abe74d5a5",{"version":"5540267409ab1444c73c786b8ae4caa37d5f0ea41f9255c6123338da790ce5cc","affectsGlobalScope":true},"c2b5085f47e41d6940bbc5b0d3bd7cc0037c752efb18aecd243c9cf83ad0c0b7","3143a5add0467b83150961ecd33773b561a1207aec727002aa1d70333068eb1b","9deb3a5eaf187df1428f0fee83c8c51eedb74f6da3442410bad9688e42a7e2b5","d0fc76a91c828fbe3f0be5d683273634b7b101068333ceed975a8a9ac464137b",{"version":"1a048ff164b8d9609f5de3139d4e37f6e8a82af82087ac414b9208f52ef8aac7","affectsGlobalScope":true},"3111079f3cb5f2b9c812ca3f46161562bce5bfb355e915f46ed46c41714dc1c3","db86f82fac051ae344b47e8fe7ac7990174b41db79b2b220a49dc5a47c71a9b5","b32b6b16cb0bda68199582ad6f22242d07ee75fac9b1f28a98cd838afc5eea45","4441ee4119824bfaebc49308559edd7545978f9cb41a40f115074e1031dde75f",{"version":"60693a88462d0e97900123b5bf7c73e146ce0cc94da46a61fe6775b430d2ff05","affectsGlobalScope":true},{"version":"588c69eda58b9202676ec7ca11a72c3762819b46a0ed72462c769846153c447c","affectsGlobalScope":true},"ae064ed4f855716b7ff348639ddcd6a6d354a72fae82f506608a7dc9266aa24c","92f019c55b21c939616f6a48f678e714ac7b109444cbbf23ad69310ce66ecbdc","cf0a69c71aedf2f8fe45925abd554fd3dc7301ce66d6ab7521fb8c3471c24dd8","56e6722c6013609b3e5e6ed4a8a7e01f41da6c5e3d6f0ecff3d09ef7a81414cf","139fd681eff7771a38d0c025d13c7a11c5474f6aab61e01c41511d71496df173","f614c3f61e46ccc2cb58702d5a158338ea57ee09099fde5db4cfc63ed0ce4d74","44e42ed6ec9c4451ebe89524e80ac8564e9dd0988c56e6c58f393c810730595d","d79fda68cbfb361c4ee9cd9ea169babb65887534d64017726cd01f54783d20a5","155865f5f76db0996cd5e20cc5760613ea170ee5ad594c1f3d76fcaa05382161","e92852d673c836fc64e10c38640abcd67c463456e5df55723ac699b8e6ab3a8a","4455c78d226d061b1203c7614c6c6eb5f4f9db5f00d44ff47d0112de8766fbc4",{"version":"ec369bb9d97c4dc09dd2a4093b7ca3ba69ad284831fccac8a1977785e9e38ce5","affectsGlobalScope":true},"4465a636f5f6e9665a90e30691862c9e0a3ac2edc0e66296704f10865e924f2a","9af781f03d44f5635ed7844be0ce370d9d595d4b4ec67cad88f0fac03255257e","f9fd4c3ef6de27fa0e256f4e75b61711c4be05a3399f7714621d3edc832e36b0","e49290b7a927995c0d7e6b2b9c8296284b68a9036d9966531de65185269258d7","c3689f70ce7563c2299f2dcb3c72efdf6f87ae510e7456fa6223c767d0ca99fc","874ca809b79276460011480a2829f4c8d4db29416dd411f71efbf8f497f0ac09","6c903bceaf3f3bc04f2d4c7dcd89ce9fb148b3ba0a5f5408d8f6de2b7eecc7ea","504d049d9e550a65466b73ca39da6469ab41786074ea1d16d37c8853f9f6ab2e","23a28f834a078986bbf58f4e3705956983ff81c3c2493f3db3e5f0e8a9507779","4febdf7f3ec92706c58e0b4e8159cd6de718284ef384260b07c9641c13fc70ce",{"version":"eabefc2999c1489cf870e0c85af908900462fa245822d9a4616780a1a129945d","affectsGlobalScope":true},"7335933d9f30dcfd2c4b6080a8b78e81912a7fcefb1dafccb67ca4cb4b3ac23d","a6bfe9de9adef749010c118104b071d14943802ff0614732b47ce4f1c3e383cd","4c3d0e10396646db4a1e917fb852077ee77ae62e512913bef9cccc2bb0f8bd0e","3b220849d58140dcc6718f5b52dcd29fdb79c45bc28f561cbd29eb1cac6cce13","0ee22fce41f7417a24c808d266e91b850629113c104713a35854393d55994beb","22d1b1d965baba05766613e2e6c753bb005d4386c448cafd72c309ba689e8c24",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"c6c0bd221bb1e94768e94218f8298e47633495529d60cae7d8da9374247a1cf5"],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationMap":true,"experimentalDecorators":true,"module":99,"rootDir":"./","sourceMap":true,"strict":true,"target":7},"fileIdsList":[[42,43],[45],[47],[48,53],[49,57,58,65,74],[49,50,57,65],[51,81],[52,53,58,66],[53,74],[54,55,57,65],[55],[56,57],[57],[57,58,59,74,80],[58,59],[60,65,74,80],[57,58,60,61,65,74,77,80],[60,62,74,77,80],[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],[57,63],[64,80],[55,57,65,74],[66],[67],[47,68],[69,79],[70],[71],[57,72],[72,73,81,83],[57,74],[75],[76],[65,74,77],[78],[65,79],[71,80],[81],[74,82],[83],[84],[57,59,74,80,83,85],[74,86],[43]],"referencedMap":[[44,1],[45,2],[47,3],[48,4],[49,5],[50,6],[51,7],[52,8],[53,9],[54,10],[55,11],[56,12],[57,13],[58,14],[59,15],[60,16],[61,17],[62,18],[88,19],[63,20],[64,21],[65,22],[66,23],[67,24],[68,25],[69,26],[70,27],[71,28],[72,29],[73,30],[74,31],[75,32],[76,33],[77,34],[78,35],[79,36],[80,37],[81,38],[82,39],[83,40],[84,41],[85,42],[86,43]],"exportedModulesMap":[[44,44],[45,2],[47,3],[48,4],[49,5],[50,6],[51,7],[52,8],[53,9],[54,10],[55,11],[56,12],[57,13],[58,14],[59,15],[60,16],[61,17],[62,18],[88,19],[63,20],[64,21],[65,22],[66,23],[67,24],[68,25],[69,26],[70,27],[71,28],[72,29],[73,30],[74,31],[75,32],[76,33],[77,34],[78,35],[79,36],[80,37],[81,38],[82,39],[83,40],[84,41],[85,42],[86,43]],"semanticDiagnosticsPerFile":[44,42,43,45,47,48,49,50,51,52,53,54,55,56,57,58,59,46,87,60,61,62,88,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,32,29,30,31,33,7,34,39,40,35,36,37,38,1,41],"latestChangedDtsFile":"./Libraries/BiscuitLibraries.d.ts"},"version":"4.9.4"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compileOnSave": false,
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"strict": true,
|
|
5
|
+
"module": "CommonJS",
|
|
6
|
+
"target": "ES6",
|
|
7
|
+
"lib": [ "ES6" ],
|
|
8
|
+
"types": [ "node" ],
|
|
9
|
+
"moduleResolution": "node",
|
|
10
|
+
"rootDir": "./",
|
|
11
|
+
"declaration": true,
|
|
12
|
+
"declarationMap": true,
|
|
13
|
+
"sourceMap": true,
|
|
14
|
+
"composite": true,
|
|
15
|
+
"experimentalDecorators": true,
|
|
16
|
+
"allowSyntheticDefaultImports": true
|
|
17
|
+
},
|
|
18
|
+
"include": ["./**/*"],
|
|
19
|
+
"exclude": [
|
|
20
|
+
"**/node_modules",
|
|
21
|
+
"Libraries/**.*"
|
|
22
|
+
]
|
|
23
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"program":{"fileNames":["./node_modules/typescript/lib/lib.es5.d.ts","./node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/typescript/lib/lib.es2018.d.ts","./node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","./node_modules/typescript/lib/lib.es2018.intl.d.ts","./node_modules/typescript/lib/lib.es2018.promise.d.ts","./node_modules/typescript/lib/lib.es2018.regexp.d.ts","./node_modules/typescript/lib/lib.es2020.bigint.d.ts","./node_modules/typescript/lib/lib.es2020.intl.d.ts","./node_modules/typescript/lib/lib.esnext.intl.d.ts","./node_modules/typescript/lib/typescript.d.ts","./asthelper.d.ts","./source/asthelper.ts","./node_modules/ts-patch/lib/file-utils.d.ts","./node_modules/ts-patch/lib/system/options.d.ts","./node_modules/ts-patch/lib/system/errors.d.ts","./node_modules/ts-patch/lib/system/helpers.d.ts","./node_modules/ts-patch/lib/system/logger.d.ts","./node_modules/ts-patch/lib/system/index.d.ts","./node_modules/ts-patch/lib/actions.d.ts","./node_modules/ts-patch/plugin-types.d.ts","./node_modules/ts-patch/index.d.ts","./source/tspatchtypes.d.ts","./transformers/compilerinsertions.ts","./transformers/macrotransformer.ts","./transformers/macros.d.ts","./transformers/mixintransformer.ts","./transformers/supertransform.ts","./node_modules/@types/node/assert.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/dns.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/string_decoder.d.ts","./node_modules/@types/node/timers.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"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"57e52a0882af4e835473dda27e4316cc31149866970210f9f79b940e916b7838","63b62edfed58ee5622cd2472a407a08ec11b33e9d68344a26f6a8cb6a5b0ecae",{"version":"5d556f1db938afd4f03b32291084006feb87447d0a77c9ec4d014d3edc7f0da8","signature":"5c8d7e3004d3e6bd16b8a5fd9444f58d5648a655952df61e5525e1f6da1548f4"},"cac7ebcbc4b019068eabb38de12a34be660861f0b41e2d9801ebaea2d006a530","ffe4aa664ca1ef25d9dd980b1f1390e52ff2fe844d59d1eb9562356ae2bf1467","3a8e2f936ac9d06a9fe050e50e9360f737b9a4c28cf605436ee9eae17413350b","b8f6e60c0a0c80e685e93b75c22f4986021c851abcd557c5a6a8f2c482f35d9d","e74644e96fa4217b36f2ee8ec07f1279c4f365d925c82b090d1bda983a942026","60f805f9fde3f1fa837c673b639a041a9a012c90ed4bfa3ca69905894e287ae8","ec2f29ea3ecb1bfebe3698c7338da512259fc89d49666f116b24ff05f1866af5","cc88a4d72849bfba72be1c82262cac811594fad5a52c5acf3b0031b591f69296","67a8fc8b1ca8407a6340628087c99c67aa13bec6cce69c278e8a0fa5e90ef7eb","5e9eb324ca882f710bb2b76fd2e937a7012602d3ea1d926ab042b4a1e72881f8",{"version":"7f8e363a003a900d7244a188b486c39d7821c94864d94be382dcd7652be2a04e","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},{"version":"63adebb415dfc61edf4b09403b1b5cb0dbc78b3a0ce70c5e0e3c3a705c080097","signature":"27ade073efdf768d32f8382619c873822ca4a8b1e6841b62bc7b935d71426fc9"},"8a662a5349e1a2e34212616a5b908c85b85b0793ae2eca5cc2291f858a43ad63",{"version":"f831cf8dd38a2755221760346bda3964c6172d89cd550aed5075f030fda27a70","signature":"71abcdb536b6a97851e8a99687f550c0b27dce45e415d2041c45d4283ce24386"},{"version":"d2bc87e18013399978ccf9abbd9bcd053a93bd80d5d721cb83f8f5c739c3047c","signature":"27ade073efdf768d32f8382619c873822ca4a8b1e6841b62bc7b935d71426fc9"},"4c2c4f53e8eedd970f8afa369d7371544fb6231bf95e659f8602e09abe74d5a5",{"version":"5540267409ab1444c73c786b8ae4caa37d5f0ea41f9255c6123338da790ce5cc","affectsGlobalScope":true},"c2b5085f47e41d6940bbc5b0d3bd7cc0037c752efb18aecd243c9cf83ad0c0b7","3143a5add0467b83150961ecd33773b561a1207aec727002aa1d70333068eb1b","9deb3a5eaf187df1428f0fee83c8c51eedb74f6da3442410bad9688e42a7e2b5","d0fc76a91c828fbe3f0be5d683273634b7b101068333ceed975a8a9ac464137b",{"version":"1a048ff164b8d9609f5de3139d4e37f6e8a82af82087ac414b9208f52ef8aac7","affectsGlobalScope":true},"3111079f3cb5f2b9c812ca3f46161562bce5bfb355e915f46ed46c41714dc1c3","db86f82fac051ae344b47e8fe7ac7990174b41db79b2b220a49dc5a47c71a9b5","b32b6b16cb0bda68199582ad6f22242d07ee75fac9b1f28a98cd838afc5eea45","4441ee4119824bfaebc49308559edd7545978f9cb41a40f115074e1031dde75f",{"version":"60693a88462d0e97900123b5bf7c73e146ce0cc94da46a61fe6775b430d2ff05","affectsGlobalScope":true},{"version":"588c69eda58b9202676ec7ca11a72c3762819b46a0ed72462c769846153c447c","affectsGlobalScope":true},"ae064ed4f855716b7ff348639ddcd6a6d354a72fae82f506608a7dc9266aa24c","92f019c55b21c939616f6a48f678e714ac7b109444cbbf23ad69310ce66ecbdc","cf0a69c71aedf2f8fe45925abd554fd3dc7301ce66d6ab7521fb8c3471c24dd8","56e6722c6013609b3e5e6ed4a8a7e01f41da6c5e3d6f0ecff3d09ef7a81414cf","139fd681eff7771a38d0c025d13c7a11c5474f6aab61e01c41511d71496df173","f614c3f61e46ccc2cb58702d5a158338ea57ee09099fde5db4cfc63ed0ce4d74","44e42ed6ec9c4451ebe89524e80ac8564e9dd0988c56e6c58f393c810730595d","d79fda68cbfb361c4ee9cd9ea169babb65887534d64017726cd01f54783d20a5","155865f5f76db0996cd5e20cc5760613ea170ee5ad594c1f3d76fcaa05382161","e92852d673c836fc64e10c38640abcd67c463456e5df55723ac699b8e6ab3a8a","4455c78d226d061b1203c7614c6c6eb5f4f9db5f00d44ff47d0112de8766fbc4",{"version":"ec369bb9d97c4dc09dd2a4093b7ca3ba69ad284831fccac8a1977785e9e38ce5","affectsGlobalScope":true},"4465a636f5f6e9665a90e30691862c9e0a3ac2edc0e66296704f10865e924f2a","9af781f03d44f5635ed7844be0ce370d9d595d4b4ec67cad88f0fac03255257e","f9fd4c3ef6de27fa0e256f4e75b61711c4be05a3399f7714621d3edc832e36b0","e49290b7a927995c0d7e6b2b9c8296284b68a9036d9966531de65185269258d7","c3689f70ce7563c2299f2dcb3c72efdf6f87ae510e7456fa6223c767d0ca99fc","874ca809b79276460011480a2829f4c8d4db29416dd411f71efbf8f497f0ac09","6c903bceaf3f3bc04f2d4c7dcd89ce9fb148b3ba0a5f5408d8f6de2b7eecc7ea","504d049d9e550a65466b73ca39da6469ab41786074ea1d16d37c8853f9f6ab2e","23a28f834a078986bbf58f4e3705956983ff81c3c2493f3db3e5f0e8a9507779","4febdf7f3ec92706c58e0b4e8159cd6de718284ef384260b07c9641c13fc70ce",{"version":"eabefc2999c1489cf870e0c85af908900462fa245822d9a4616780a1a129945d","affectsGlobalScope":true},"7335933d9f30dcfd2c4b6080a8b78e81912a7fcefb1dafccb67ca4cb4b3ac23d","a6bfe9de9adef749010c118104b071d14943802ff0614732b47ce4f1c3e383cd","4c3d0e10396646db4a1e917fb852077ee77ae62e512913bef9cccc2bb0f8bd0e","3b220849d58140dcc6718f5b52dcd29fdb79c45bc28f561cbd29eb1cac6cce13","0ee22fce41f7417a24c808d266e91b850629113c104713a35854393d55994beb","22d1b1d965baba05766613e2e6c753bb005d4386c448cafd72c309ba689e8c24",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"c6c0bd221bb1e94768e94218f8298e47633495529d60cae7d8da9374247a1cf5"],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationMap":true,"experimentalDecorators":true,"module":1,"rootDir":"./","sourceMap":true,"strict":true,"target":2},"fileIdsList":[[29],[47],[49],[50,55],[51,59,60,67,76],[51,52,59,67],[53,83],[54,55,60,68],[55,76],[56,57,59,67],[57],[58,59],[59],[59,60,61,76,82],[60,61],[62,67,76,82],[59,60,62,63,67,76,79,82],[62,64,76,79,82],[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],[59,65],[66,82],[57,59,67,76],[68],[69],[49,70],[71,81],[72],[73],[59,74],[74,75,83,85],[59,76],[77],[78],[67,76,79],[80],[67,81],[73,82],[83],[76,84],[85],[86],[59,61,76,82,85,87],[76,88],[32,33,38,39],[32,37],[33,34,35,36],[29,40],[29,31]],"referencedMap":[[30,1],[47,2],[49,3],[50,4],[51,5],[52,6],[53,7],[54,8],[55,9],[56,10],[57,11],[58,12],[59,13],[60,14],[61,15],[62,16],[63,17],[64,18],[90,19],[65,20],[66,21],[67,22],[68,23],[69,24],[70,25],[71,26],[72,27],[73,28],[74,29],[75,30],[76,31],[77,32],[78,33],[79,34],[80,35],[81,36],[82,37],[83,38],[84,39],[85,40],[86,41],[87,42],[88,43],[40,44],[38,45],[37,46],[39,1],[31,1],[41,47],[44,1],[43,1],[45,48],[46,1]],"exportedModulesMap":[[30,1],[47,2],[49,3],[50,4],[51,5],[52,6],[53,7],[54,8],[55,9],[56,10],[57,11],[58,12],[59,13],[60,14],[61,15],[62,16],[63,17],[64,18],[90,19],[65,20],[66,21],[67,22],[68,23],[69,24],[70,25],[71,26],[72,27],[73,28],[74,29],[75,30],[76,31],[77,32],[78,33],[79,34],[80,35],[81,36],[82,37],[83,38],[84,39],[85,40],[86,41],[87,42],[88,43],[40,44],[38,45],[37,46],[39,1],[31,1],[41,47],[44,1],[43,1],[45,48],[46,1]],"semanticDiagnosticsPerFile":[30,47,49,50,51,52,53,54,55,56,57,58,59,60,61,48,89,62,63,64,90,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,40,38,32,34,35,37,36,33,39,7,6,2,8,9,10,11,12,13,14,15,3,4,19,16,17,18,20,21,22,5,23,24,25,26,27,1,28,29,31,41,42,44,43,45,46],"latestChangedDtsFile":"./Transformers/SuperTransform.d.ts"},"version":"4.9.4"}
|