@atlaspack/transformer-typescript-types 2.14.5-canary.35 → 2.14.5-canary.350
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/CHANGELOG.md +359 -0
- package/dist/TSModule.js +40 -0
- package/dist/TSModuleGraph.js +233 -0
- package/dist/TSTypesTransformer.js +185 -0
- package/dist/collect.js +137 -0
- package/dist/shake.js +219 -0
- package/dist/utils.js +29 -0
- package/dist/wrappers.js +71 -0
- package/lib/TSModuleGraph.js +13 -0
- package/lib/TSTypesTransformer.js +7 -5
- package/lib/collect.js +28 -4
- package/lib/shake.js +24 -6
- package/lib/types/TSModule.d.ts +25 -0
- package/lib/types/TSModuleGraph.d.ts +33 -0
- package/lib/types/TSTypesTransformer.d.ts +3 -0
- package/lib/types/collect.d.ts +2 -0
- package/lib/types/shake.d.ts +2 -0
- package/lib/types/utils.d.ts +2 -0
- package/lib/types/wrappers.d.ts +8 -0
- package/lib/utils.js +4 -0
- package/lib/wrappers.js +5 -4
- package/package.json +14 -10
- package/src/{TSModule.js → TSModule.ts} +13 -6
- package/src/{TSModuleGraph.js → TSModuleGraph.ts} +48 -9
- package/src/{TSTypesTransformer.js → TSTypesTransformer.ts} +11 -11
- package/src/{collect.js → collect.ts} +22 -5
- package/src/{shake.js → shake.ts} +19 -6
- package/src/{utils.js → utils.ts} +3 -2
- package/src/{wrappers.js → wrappers.ts} +95 -58
- package/tsconfig.json +24 -0
- package/tsconfig.tsbuildinfo +1 -0
package/lib/TSModuleGraph.js
CHANGED
|
@@ -78,15 +78,20 @@ class TSModuleGraph {
|
|
|
78
78
|
}
|
|
79
79
|
}
|
|
80
80
|
getExport(m, e) {
|
|
81
|
+
// @ts-expect-error TS2339
|
|
81
82
|
(0, _assert().default)(e.name != null);
|
|
83
|
+
// @ts-expect-error TS2339
|
|
82
84
|
let exportName = e.name;
|
|
83
85
|
|
|
84
86
|
// Re-export
|
|
87
|
+
// @ts-expect-error TS2339
|
|
85
88
|
if (e.specifier && e.imported) {
|
|
86
89
|
let m = this.getModule(e.specifier);
|
|
87
90
|
if (!m) {
|
|
88
91
|
return null;
|
|
89
92
|
}
|
|
93
|
+
|
|
94
|
+
// @ts-expect-error TS2339
|
|
90
95
|
let exp = this.resolveExport(m, e.imported);
|
|
91
96
|
if (!exp) {
|
|
92
97
|
return null;
|
|
@@ -115,6 +120,7 @@ class TSModuleGraph {
|
|
|
115
120
|
return {
|
|
116
121
|
module: m,
|
|
117
122
|
name: exportName,
|
|
123
|
+
// @ts-expect-error TS2339
|
|
118
124
|
imported: e.imported != null ? m.getName(e.imported) : exportName
|
|
119
125
|
};
|
|
120
126
|
}
|
|
@@ -136,6 +142,7 @@ class TSModuleGraph {
|
|
|
136
142
|
}
|
|
137
143
|
resolveExport(module, name) {
|
|
138
144
|
for (let e of module.exports) {
|
|
145
|
+
// @ts-expect-error TS2339
|
|
139
146
|
if (e.name === name) {
|
|
140
147
|
return this.getExport(module, e);
|
|
141
148
|
} else if (e.specifier) {
|
|
@@ -149,6 +156,7 @@ class TSModuleGraph {
|
|
|
149
156
|
getAllExports(module = (0, _nullthrows().default)(this.mainModule), excludeDefault = false) {
|
|
150
157
|
let res = [];
|
|
151
158
|
for (let e of module.exports) {
|
|
159
|
+
// @ts-expect-error TS2339
|
|
152
160
|
if (e.name && (!excludeDefault || e.name !== 'default')) {
|
|
153
161
|
let exp = this.getExport(module, e);
|
|
154
162
|
if (exp) {
|
|
@@ -218,11 +226,14 @@ class TSModuleGraph {
|
|
|
218
226
|
// Map of imported specifiers -> map of imported names to local names
|
|
219
227
|
let imports = new Map();
|
|
220
228
|
for (let [m, orig] of importedSymbolsToUpdate) {
|
|
229
|
+
// @ts-expect-error TS2339
|
|
221
230
|
let imp = (0, _nullthrows().default)(m.imports.get(orig));
|
|
231
|
+
// @ts-expect-error TS2345
|
|
222
232
|
let imported = (0, _nullthrows().default)(this.resolveImport(m, orig));
|
|
223
233
|
|
|
224
234
|
// If the module is bundled, map the local name to the original exported name.
|
|
225
235
|
if (this.modules.has(imp.specifier)) {
|
|
236
|
+
// @ts-expect-error TS2339
|
|
226
237
|
m.names.set(orig, imported.imported);
|
|
227
238
|
continue;
|
|
228
239
|
}
|
|
@@ -244,6 +255,8 @@ class TSModuleGraph {
|
|
|
244
255
|
}
|
|
245
256
|
importedNames.set(imported.imported, name);
|
|
246
257
|
}
|
|
258
|
+
|
|
259
|
+
// @ts-expect-error TS2339
|
|
247
260
|
m.names.set(orig, name);
|
|
248
261
|
}
|
|
249
262
|
return exportedNames;
|
|
@@ -19,7 +19,7 @@ function _path() {
|
|
|
19
19
|
return data;
|
|
20
20
|
}
|
|
21
21
|
function _sourceMap() {
|
|
22
|
-
const data = _interopRequireDefault(require("@
|
|
22
|
+
const data = _interopRequireDefault(require("@atlaspack/source-map"));
|
|
23
23
|
_sourceMap = function () {
|
|
24
24
|
return data;
|
|
25
25
|
};
|
|
@@ -98,14 +98,16 @@ var _default = exports.default = new (_plugin().Transformer)({
|
|
|
98
98
|
incremental: false
|
|
99
99
|
};
|
|
100
100
|
let host = new (_tsUtils().CompilerHost)(options.inputFS, _typescript().default, logger);
|
|
101
|
-
//
|
|
101
|
+
// @ts-expect-error TS2345
|
|
102
102
|
let program = _typescript().default.createProgram([asset.filePath], opts, host);
|
|
103
103
|
for (let file of program.getSourceFiles()) {
|
|
104
104
|
if (_path().default.normalize(file.fileName) !== asset.filePath) {
|
|
105
105
|
asset.invalidateOnFileChange(host.redirectTypes.get(file.fileName) ?? file.fileName);
|
|
106
106
|
}
|
|
107
107
|
}
|
|
108
|
-
let mainModuleName = (0, _utils().normalizeSeparators)(_path().default
|
|
108
|
+
let mainModuleName = (0, _utils().normalizeSeparators)(_path().default
|
|
109
|
+
// @ts-expect-error TS2339
|
|
110
|
+
.relative(program.getCommonSourceDirectory(), asset.filePath).slice(0, -_path().default.extname(asset.filePath).length));
|
|
109
111
|
let moduleGraph = new _TSModuleGraph.TSModuleGraph(mainModuleName);
|
|
110
112
|
let emitResult = program.emit(undefined, undefined, undefined, true, {
|
|
111
113
|
afterDeclarations: [
|
|
@@ -120,6 +122,7 @@ var _default = exports.default = new (_plugin().Transformer)({
|
|
|
120
122
|
});
|
|
121
123
|
let diagnostics = _typescript().default.getPreEmitDiagnostics(program).concat(emitResult.diagnostics);
|
|
122
124
|
let diagnosticIds = new Set();
|
|
125
|
+
// @ts-expect-error TS2304
|
|
123
126
|
let deduplicatedDiagnostics = [];
|
|
124
127
|
for (let d of diagnostics) {
|
|
125
128
|
if (d.start != null && d.length != null && d.messageText != null) {
|
|
@@ -144,8 +147,6 @@ var _default = exports.default = new (_plugin().Transformer)({
|
|
|
144
147
|
if (file.fileName) {
|
|
145
148
|
filename = file.fileName;
|
|
146
149
|
}
|
|
147
|
-
|
|
148
|
-
// $FlowFixMe
|
|
149
150
|
if (source) {
|
|
150
151
|
let lineChar = file.getLineAndCharacterOfPosition(diagnostic.start);
|
|
151
152
|
let start = {
|
|
@@ -191,6 +192,7 @@ var _default = exports.default = new (_plugin().Transformer)({
|
|
|
191
192
|
let code = (0, _nullthrows().default)(host.outputCode);
|
|
192
193
|
code = code.substring(0, code.lastIndexOf('//# sourceMappingURL'));
|
|
193
194
|
let map = JSON.parse((0, _nullthrows().default)(host.outputMap));
|
|
195
|
+
// @ts-expect-error TS7006
|
|
194
196
|
map.sources = map.sources.map(source => _path().default.join(_path().default.dirname(asset.filePath), source));
|
|
195
197
|
let sourceMap = null;
|
|
196
198
|
if (map.mappings) {
|
package/lib/collect.js
CHANGED
|
@@ -33,6 +33,7 @@ function collect(moduleGraph, context, sourceFile) {
|
|
|
33
33
|
let _currentModule;
|
|
34
34
|
let visit = node => {
|
|
35
35
|
if (_typescript().default.isBundle(node)) {
|
|
36
|
+
// @ts-expect-error TS2345
|
|
36
37
|
return factory.updateBundle(node, _typescript().default.visitNodes(node.sourceFiles, visit));
|
|
37
38
|
}
|
|
38
39
|
if (_typescript().default.isModuleDeclaration(node)) {
|
|
@@ -46,28 +47,43 @@ function collect(moduleGraph, context, sourceFile) {
|
|
|
46
47
|
let currentModule = (0, _nullthrows().default)(_currentModule);
|
|
47
48
|
if (_typescript().default.isImportDeclaration(node) && node.importClause) {
|
|
48
49
|
if (node.importClause.namedBindings) {
|
|
50
|
+
// @ts-expect-error TS2339
|
|
49
51
|
if (node.importClause.namedBindings.elements) {
|
|
52
|
+
// @ts-expect-error TS2339
|
|
50
53
|
for (let element of node.importClause.namedBindings.elements) {
|
|
51
|
-
currentModule.addImport(element.name.text,
|
|
54
|
+
currentModule.addImport(element.name.text,
|
|
55
|
+
// @ts-expect-error TS2339
|
|
56
|
+
node.moduleSpecifier.text, (element.propertyName ?? element.name).text);
|
|
52
57
|
}
|
|
58
|
+
// @ts-expect-error TS2339
|
|
53
59
|
} else if (node.importClause.namedBindings.name) {
|
|
54
|
-
currentModule.addImport(
|
|
60
|
+
currentModule.addImport(
|
|
61
|
+
// @ts-expect-error TS2339
|
|
62
|
+
node.importClause.namedBindings.name.text,
|
|
63
|
+
// @ts-expect-error TS2339
|
|
64
|
+
node.moduleSpecifier.text, '*');
|
|
55
65
|
}
|
|
56
66
|
}
|
|
57
67
|
if (node.importClause.name) {
|
|
58
|
-
currentModule.addImport(node.importClause.name.text,
|
|
68
|
+
currentModule.addImport(node.importClause.name.text,
|
|
69
|
+
// @ts-expect-error TS2339
|
|
70
|
+
node.moduleSpecifier.text, 'default');
|
|
59
71
|
}
|
|
60
72
|
}
|
|
61
73
|
if (_typescript().default.isExportDeclaration(node)) {
|
|
62
74
|
if (node.exportClause) {
|
|
75
|
+
// @ts-expect-error TS2339
|
|
63
76
|
for (let element of node.exportClause.elements) {
|
|
64
77
|
if (node.moduleSpecifier) {
|
|
65
|
-
currentModule.addExport(element.name.text, (element.propertyName ?? element.name).text,
|
|
78
|
+
currentModule.addExport(element.name.text, (element.propertyName ?? element.name).text,
|
|
79
|
+
// @ts-expect-error TS2339
|
|
80
|
+
node.moduleSpecifier.text);
|
|
66
81
|
} else {
|
|
67
82
|
currentModule.addExport(element.name.text, (element.propertyName ?? element.name).text);
|
|
68
83
|
}
|
|
69
84
|
}
|
|
70
85
|
} else {
|
|
86
|
+
// @ts-expect-error TS18048
|
|
71
87
|
currentModule.addWildcardExport(node.moduleSpecifier.text);
|
|
72
88
|
}
|
|
73
89
|
}
|
|
@@ -96,8 +112,10 @@ function collect(moduleGraph, context, sourceFile) {
|
|
|
96
112
|
if (_typescript().default.isVariableStatement(node) && node.modifiers) {
|
|
97
113
|
let isExported = node.modifiers.some(m => m.kind === _typescript().default.SyntaxKind.ExportKeyword);
|
|
98
114
|
for (let v of node.declarationList.declarations) {
|
|
115
|
+
// @ts-expect-error TS2339
|
|
99
116
|
currentModule.addLocal(v.name.text, v);
|
|
100
117
|
if (isExported) {
|
|
118
|
+
// @ts-expect-error TS2339
|
|
101
119
|
currentModule.addExport(v.name.text, v.name.text);
|
|
102
120
|
}
|
|
103
121
|
}
|
|
@@ -116,13 +134,19 @@ function collect(moduleGraph, context, sourceFile) {
|
|
|
116
134
|
// Traverse down an EntityName to the root identifier. Return that to use as the named import specifier,
|
|
117
135
|
// and collect the remaining parts into a new QualifiedName with the local replacement at the root.
|
|
118
136
|
// import('react').JSX.Element => import {JSX} from 'react'; JSX.Element
|
|
137
|
+
// @ts-expect-error TS7023
|
|
119
138
|
function getImportName(qualifier, local, factory) {
|
|
120
139
|
if (!qualifier) {
|
|
140
|
+
// @ts-expect-error TS2339
|
|
121
141
|
return ['*', factory.createIdentifier(local)];
|
|
122
142
|
}
|
|
123
143
|
if (qualifier.kind === _typescript().default.SyntaxKind.Identifier) {
|
|
144
|
+
// @ts-expect-error TS2339
|
|
124
145
|
return [qualifier.text, factory.createIdentifier(local)];
|
|
125
146
|
}
|
|
147
|
+
|
|
148
|
+
// @ts-expect-error TS7022
|
|
126
149
|
let [name, entity] = getImportName(qualifier.left, local, factory);
|
|
150
|
+
// @ts-expect-error TS2339
|
|
127
151
|
return [name, factory.createQualifiedName(entity, qualifier.right)];
|
|
128
152
|
}
|
package/lib/shake.js
CHANGED
|
@@ -4,7 +4,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.shake = shake;
|
|
7
|
-
var _TSModule = require("./TSModule");
|
|
8
7
|
function _typescript() {
|
|
9
8
|
const data = _interopRequireDefault(require("typescript"));
|
|
10
9
|
_typescript = function () {
|
|
@@ -43,6 +42,7 @@ function shake(moduleGraph, context, sourceFile) {
|
|
|
43
42
|
let _currentModule;
|
|
44
43
|
let visit = node => {
|
|
45
44
|
if (_typescript().default.isBundle(node)) {
|
|
45
|
+
// @ts-expect-error TS2345
|
|
46
46
|
return factory.updateBundle(node, _typescript().default.visitNodes(node.sourceFiles, visit));
|
|
47
47
|
}
|
|
48
48
|
|
|
@@ -53,14 +53,19 @@ function shake(moduleGraph, context, sourceFile) {
|
|
|
53
53
|
var _node$modifiers$;
|
|
54
54
|
// Since we are hoisting them to the top-level scope, we need to add a "declare" keyword to make them ambient.
|
|
55
55
|
// we also want the declare keyword to come after the export keyword to guarantee a valid typings file.
|
|
56
|
+
// @ts-expect-error TS2540
|
|
56
57
|
node.modifiers ??= [];
|
|
57
|
-
const index =
|
|
58
|
+
const index =
|
|
59
|
+
// @ts-expect-error TS18048
|
|
60
|
+
((_node$modifiers$ = node.modifiers[0]) === null || _node$modifiers$ === void 0 ? void 0 : _node$modifiers$.kind) === _typescript().default.SyntaxKind.ExportKeyword ? 1 : 0;
|
|
61
|
+
// @ts-expect-error TS18048
|
|
58
62
|
node.modifiers.splice(index, 0, factory.createModifier(_typescript().default.SyntaxKind.DeclareKeyword));
|
|
59
63
|
return node;
|
|
60
64
|
}
|
|
61
65
|
moduleStack.push(_currentModule);
|
|
62
66
|
let isFirstModule = !_currentModule;
|
|
63
67
|
_currentModule = moduleGraph.getModule(node.name.text);
|
|
68
|
+
// @ts-expect-error TS2532
|
|
64
69
|
let statements = _typescript().default.visitEachChild(node, visit, context).body.statements;
|
|
65
70
|
_currentModule = moduleStack.pop();
|
|
66
71
|
if (isFirstModule && !addedGeneratedImports) {
|
|
@@ -80,10 +85,13 @@ function shake(moduleGraph, context, sourceFile) {
|
|
|
80
85
|
let currentModule = (0, _nullthrows().default)(_currentModule);
|
|
81
86
|
// Remove exports from flattened modules
|
|
82
87
|
if (_typescript().default.isExportDeclaration(node)) {
|
|
83
|
-
if (!node.moduleSpecifier ||
|
|
88
|
+
if (!node.moduleSpecifier ||
|
|
89
|
+
// @ts-expect-error TS2339
|
|
90
|
+
moduleGraph.getModule(node.moduleSpecifier.text)) {
|
|
84
91
|
if (!node.moduleSpecifier && node.exportClause) {
|
|
85
92
|
// Filter exported elements to only external re-exports
|
|
86
93
|
let exported = [];
|
|
94
|
+
// @ts-expect-error TS2339
|
|
87
95
|
for (let element of node.exportClause.elements) {
|
|
88
96
|
let name = (element.propertyName ?? element.name).text;
|
|
89
97
|
if (exportedNames.get(name) === currentModule && !currentModule.hasBinding(name)) {
|
|
@@ -122,7 +130,9 @@ function shake(moduleGraph, context, sourceFile) {
|
|
|
122
130
|
}
|
|
123
131
|
|
|
124
132
|
// Remove original export modifiers
|
|
125
|
-
node.modifiers = (node.modifiers || []).filter(
|
|
133
|
+
node.modifiers = (node.modifiers || []).filter(
|
|
134
|
+
// @ts-expect-error TS7006
|
|
135
|
+
m => m.kind !== _typescript().default.SyntaxKind.ExportKeyword && m.kind !== _typescript().default.SyntaxKind.DefaultKeyword);
|
|
126
136
|
|
|
127
137
|
// Rename declarations
|
|
128
138
|
let newName = currentModule.getName(name);
|
|
@@ -137,6 +147,7 @@ function shake(moduleGraph, context, sourceFile) {
|
|
|
137
147
|
}
|
|
138
148
|
node.modifiers.unshift(factory.createModifier(_typescript().default.SyntaxKind.ExportKeyword));
|
|
139
149
|
} else if (_typescript().default.isFunctionDeclaration(node) || _typescript().default.isClassDeclaration(node)) {
|
|
150
|
+
// @ts-expect-error TS18048
|
|
140
151
|
node.modifiers.unshift(factory.createModifier(_typescript().default.SyntaxKind.DeclareKeyword));
|
|
141
152
|
}
|
|
142
153
|
}
|
|
@@ -149,10 +160,14 @@ function shake(moduleGraph, context, sourceFile) {
|
|
|
149
160
|
}
|
|
150
161
|
|
|
151
162
|
// Remove original export modifiers
|
|
152
|
-
node.modifiers = (node.modifiers || []).filter(
|
|
163
|
+
node.modifiers = (node.modifiers || []).filter(
|
|
164
|
+
// @ts-expect-error TS7006
|
|
165
|
+
m => m.kind !== _typescript().default.SyntaxKind.ExportKeyword && m.kind !== _typescript().default.SyntaxKind.DeclareKeyword);
|
|
153
166
|
|
|
154
167
|
// Add export modifier if all declarations are exported.
|
|
155
|
-
let isExported = node.declarationList.declarations.every(
|
|
168
|
+
let isExported = node.declarationList.declarations.every(
|
|
169
|
+
// @ts-expect-error TS7006
|
|
170
|
+
d => exportedNames.get(d.name.text) === currentModule);
|
|
156
171
|
if (isExported) {
|
|
157
172
|
node.modifiers.unshift(factory.createModifier(_typescript().default.SyntaxKind.ExportKeyword));
|
|
158
173
|
} else {
|
|
@@ -163,6 +178,7 @@ function shake(moduleGraph, context, sourceFile) {
|
|
|
163
178
|
}
|
|
164
179
|
if (_typescript().default.isVariableDeclaration(node)) {
|
|
165
180
|
// Remove unused variables
|
|
181
|
+
// @ts-expect-error TS2339
|
|
166
182
|
if (!currentModule.used.has(node.name.text)) {
|
|
167
183
|
return null;
|
|
168
184
|
}
|
|
@@ -198,10 +214,12 @@ function shake(moduleGraph, context, sourceFile) {
|
|
|
198
214
|
return _typescript().default.visitNode(sourceFile, visit);
|
|
199
215
|
}
|
|
200
216
|
function generateImports(factory, moduleGraph) {
|
|
217
|
+
// @ts-expect-error TS2304
|
|
201
218
|
let importStatements = [];
|
|
202
219
|
for (let [specifier, names] of moduleGraph.getAllImports()) {
|
|
203
220
|
let defaultSpecifier;
|
|
204
221
|
let namespaceSpecifier;
|
|
222
|
+
// @ts-expect-error TS2304
|
|
205
223
|
let namedSpecifiers = [];
|
|
206
224
|
for (let [name, imported] of names) {
|
|
207
225
|
if (imported === 'default') {
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export type Import = {
|
|
2
|
+
specifier: string;
|
|
3
|
+
imported: string;
|
|
4
|
+
};
|
|
5
|
+
export type Export = {
|
|
6
|
+
name: string;
|
|
7
|
+
imported: string;
|
|
8
|
+
specifier?: string | null | undefined;
|
|
9
|
+
} | {
|
|
10
|
+
specifier: string;
|
|
11
|
+
};
|
|
12
|
+
export declare class TSModule {
|
|
13
|
+
imports: Map<string, Import>;
|
|
14
|
+
exports: Array<Export>;
|
|
15
|
+
bindings: Map<string, Set<any>>;
|
|
16
|
+
names: Map<string, string>;
|
|
17
|
+
used: Set<string>;
|
|
18
|
+
constructor();
|
|
19
|
+
addImport(local: string, specifier: string, imported: string): void;
|
|
20
|
+
addExport(name: string, imported: string, specifier?: string | null): void;
|
|
21
|
+
addWildcardExport(specifier: string): void;
|
|
22
|
+
addLocal(name: string, node: any): void;
|
|
23
|
+
getName(name: string): string;
|
|
24
|
+
hasBinding(name: string): boolean;
|
|
25
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import type { TSModule, Export } from './TSModule';
|
|
2
|
+
export declare class TSModuleGraph {
|
|
3
|
+
modules: Map<string, TSModule>;
|
|
4
|
+
mainModuleName: string;
|
|
5
|
+
mainModule: TSModule | null | undefined;
|
|
6
|
+
syntheticImportCount: number;
|
|
7
|
+
constructor(mainModuleName: string);
|
|
8
|
+
addModule(name: string, module: TSModule): void;
|
|
9
|
+
getModule(name: string): TSModule | null | undefined;
|
|
10
|
+
markUsed(module: TSModule, name: string, context: any): void;
|
|
11
|
+
getExport(m: TSModule, e: Export): {
|
|
12
|
+
imported: string;
|
|
13
|
+
module: TSModule;
|
|
14
|
+
name: string;
|
|
15
|
+
} | null | undefined;
|
|
16
|
+
resolveImport(module: TSModule, local: string, imported?: string): {
|
|
17
|
+
imported: string;
|
|
18
|
+
module: TSModule;
|
|
19
|
+
name: string;
|
|
20
|
+
} | null | undefined;
|
|
21
|
+
resolveExport(module: TSModule, name: string): {
|
|
22
|
+
imported: string;
|
|
23
|
+
module: TSModule;
|
|
24
|
+
name: string;
|
|
25
|
+
} | null | undefined;
|
|
26
|
+
getAllExports(module?: TSModule, excludeDefault?: boolean): Array<{
|
|
27
|
+
imported: string;
|
|
28
|
+
module: TSModule;
|
|
29
|
+
name: string;
|
|
30
|
+
}>;
|
|
31
|
+
getAllImports(): Map<string, Map<string, string>>;
|
|
32
|
+
propagate(context: any): Map<string, TSModule>;
|
|
33
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { ExportDeclaration, Expression, Identifier, ImportClause, ImportDeclaration, ImportSpecifier, Modifier, NamedImportBindings } from 'typescript';
|
|
2
|
+
type AssertClause = any;
|
|
3
|
+
type NamedExportBindings = any;
|
|
4
|
+
export declare const createImportClause: (factory: any, isTypeOnly: boolean, name: Identifier | undefined, namedBindings: NamedImportBindings | undefined) => ImportClause;
|
|
5
|
+
export declare const createImportDeclaration: (factory: any, modifiers: Modifier[] | undefined, importClause: ImportClause | undefined, moduleSpecifier: Expression, assertClause: AssertClause) => ImportDeclaration;
|
|
6
|
+
export declare const createImportSpecifier: (factory: any, isTypeOnly: boolean, propertyName: Identifier | undefined, name: Identifier) => ImportSpecifier;
|
|
7
|
+
export declare const updateExportDeclaration: (factory: any, node: ExportDeclaration, modifiers: Modifier[] | undefined, isTypeOnly: boolean, exportClause: NamedExportBindings | undefined, moduleSpecifier: Expression | undefined, assertClause: AssertClause | undefined) => ExportDeclaration;
|
|
8
|
+
export {};
|
package/lib/utils.js
CHANGED
|
@@ -17,9 +17,13 @@ function getExportedName(node) {
|
|
|
17
17
|
if (!node.modifiers) {
|
|
18
18
|
return null;
|
|
19
19
|
}
|
|
20
|
+
|
|
21
|
+
// @ts-expect-error TS7006
|
|
20
22
|
if (!node.modifiers.some(m => m.kind === _typescript().default.SyntaxKind.ExportKeyword)) {
|
|
21
23
|
return null;
|
|
22
24
|
}
|
|
25
|
+
|
|
26
|
+
// @ts-expect-error TS7006
|
|
23
27
|
if (node.modifiers.some(m => m.kind === _typescript().default.SyntaxKind.DefaultKeyword)) {
|
|
24
28
|
return 'default';
|
|
25
29
|
}
|
package/lib/wrappers.js
CHANGED
|
@@ -20,6 +20,7 @@ function _assert() {
|
|
|
20
20
|
}
|
|
21
21
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
22
22
|
/* eslint-disable no-unused-vars */
|
|
23
|
+
|
|
23
24
|
const [majorVersion, minorVersion] = _typescript().default.versionMajorMinor.split('.').map(num => parseInt(num, 10));
|
|
24
25
|
|
|
25
26
|
// Everything below was generated using https://github.com/mischnic/tsc-version-wrapper
|
|
@@ -41,7 +42,7 @@ const createImportDeclaration = exports.createImportDeclaration = (() => {
|
|
|
41
42
|
} else if (majorVersion > 4 || majorVersion === 4 && minorVersion >= 5) {
|
|
42
43
|
return (factory, modifiers, importClause, moduleSpecifier, assertClause) => factory.createImportDeclaration(undefined /* decorators */, modifiers, importClause, moduleSpecifier, assertClause);
|
|
43
44
|
} else if (majorVersion > 3 || majorVersion === 3 && minorVersion >= 0) {
|
|
44
|
-
return (factory, modifiers, importClause, moduleSpecifier) => factory.createImportDeclaration(undefined /* decorators */, modifiers, importClause, moduleSpecifier);
|
|
45
|
+
return (factory, modifiers, importClause, moduleSpecifier, assertClause) => factory.createImportDeclaration(undefined /* decorators */, modifiers, importClause, moduleSpecifier);
|
|
45
46
|
} else {
|
|
46
47
|
(0, _assert().default)(false);
|
|
47
48
|
}
|
|
@@ -61,11 +62,11 @@ const updateExportDeclaration = exports.updateExportDeclaration = (() => {
|
|
|
61
62
|
} else if (majorVersion > 4 || majorVersion === 4 && minorVersion >= 5) {
|
|
62
63
|
return (factory, node, modifiers, isTypeOnly, exportClause, moduleSpecifier, assertClause) => factory.updateExportDeclaration(node, undefined /* decorators */, modifiers, isTypeOnly, exportClause, moduleSpecifier, assertClause);
|
|
63
64
|
} else if (majorVersion > 4 || majorVersion === 4 && minorVersion >= 0) {
|
|
64
|
-
return (factory, node, modifiers, isTypeOnly, exportClause, moduleSpecifier) => factory.updateExportDeclaration(node, undefined /* decorators */, modifiers, isTypeOnly, exportClause, moduleSpecifier);
|
|
65
|
+
return (factory, node, modifiers, isTypeOnly, exportClause, moduleSpecifier, assertClause) => factory.updateExportDeclaration(node, undefined /* decorators */, modifiers, isTypeOnly, exportClause, moduleSpecifier);
|
|
65
66
|
} else if (majorVersion > 3 || majorVersion === 3 && minorVersion >= 8) {
|
|
66
|
-
return (factory, node, modifiers, isTypeOnly, exportClause, moduleSpecifier) => factory.updateExportDeclaration(node, undefined /* decorators */, modifiers, exportClause, moduleSpecifier, isTypeOnly);
|
|
67
|
+
return (factory, node, modifiers, isTypeOnly, exportClause, moduleSpecifier, assertClause) => factory.updateExportDeclaration(node, undefined /* decorators */, modifiers, exportClause, moduleSpecifier, isTypeOnly);
|
|
67
68
|
} else if (majorVersion > 3 || majorVersion === 3 && minorVersion >= 0) {
|
|
68
|
-
return (factory, node, modifiers, isTypeOnly, exportClause, moduleSpecifier) => factory.updateExportDeclaration(node, undefined /* decorators */, modifiers, exportClause, moduleSpecifier);
|
|
69
|
+
return (factory, node, modifiers, isTypeOnly, exportClause, moduleSpecifier, assertClause) => factory.updateExportDeclaration(node, undefined /* decorators */, modifiers, exportClause, moduleSpecifier);
|
|
69
70
|
} else {
|
|
70
71
|
(0, _assert().default)(false);
|
|
71
72
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaspack/transformer-typescript-types",
|
|
3
|
-
"version": "2.14.5-canary.
|
|
3
|
+
"version": "2.14.5-canary.350+565bab377",
|
|
4
4
|
"license": "(MIT OR Apache-2.0)",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -9,17 +9,18 @@
|
|
|
9
9
|
"type": "git",
|
|
10
10
|
"url": "https://github.com/atlassian-labs/atlaspack.git"
|
|
11
11
|
},
|
|
12
|
-
"main": "lib/TSTypesTransformer.js",
|
|
13
|
-
"source": "src/TSTypesTransformer.
|
|
12
|
+
"main": "./lib/TSTypesTransformer.js",
|
|
13
|
+
"source": "./src/TSTypesTransformer.ts",
|
|
14
|
+
"types": "./lib/types/TSTypesTransformer.d.ts",
|
|
14
15
|
"engines": {
|
|
15
16
|
"node": ">= 16.0.0"
|
|
16
17
|
},
|
|
17
18
|
"dependencies": {
|
|
18
|
-
"@atlaspack/diagnostic": "2.14.1-canary.
|
|
19
|
-
"@atlaspack/plugin": "2.14.5-canary.
|
|
20
|
-
"@atlaspack/
|
|
21
|
-
"@atlaspack/utils": "2.14.
|
|
22
|
-
"@
|
|
19
|
+
"@atlaspack/diagnostic": "2.14.1-canary.418+565bab377",
|
|
20
|
+
"@atlaspack/plugin": "2.14.5-canary.350+565bab377",
|
|
21
|
+
"@atlaspack/source-map": "3.2.3-canary.4129+565bab377",
|
|
22
|
+
"@atlaspack/ts-utils": "2.14.1-canary.418+565bab377",
|
|
23
|
+
"@atlaspack/utils": "2.14.5-canary.350+565bab377",
|
|
23
24
|
"nullthrows": "^1.1.1"
|
|
24
25
|
},
|
|
25
26
|
"devDependencies": {
|
|
@@ -29,5 +30,8 @@
|
|
|
29
30
|
"typescript": ">=3.0.0"
|
|
30
31
|
},
|
|
31
32
|
"type": "commonjs",
|
|
32
|
-
"
|
|
33
|
-
|
|
33
|
+
"scripts": {
|
|
34
|
+
"build:lib": "gulp build --gulpfile ../../../gulpfile.js --cwd ."
|
|
35
|
+
},
|
|
36
|
+
"gitHead": "565bab3771cc334659d873cabff4cdfac0860cc7"
|
|
37
|
+
}
|
|
@@ -1,9 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
export type Import = {
|
|
2
|
+
specifier: string;
|
|
3
|
+
imported: string;
|
|
4
|
+
};
|
|
4
5
|
export type Export =
|
|
5
|
-
| {
|
|
6
|
-
|
|
6
|
+
| {
|
|
7
|
+
name: string;
|
|
8
|
+
imported: string;
|
|
9
|
+
specifier?: string | null | undefined;
|
|
10
|
+
}
|
|
11
|
+
| {
|
|
12
|
+
specifier: string;
|
|
13
|
+
};
|
|
7
14
|
|
|
8
15
|
export class TSModule {
|
|
9
16
|
imports: Map<string, Import>;
|
|
@@ -28,7 +35,7 @@ export class TSModule {
|
|
|
28
35
|
}
|
|
29
36
|
|
|
30
37
|
// if not a reexport: imported = local, name = exported
|
|
31
|
-
addExport(name: string, imported: string, specifier
|
|
38
|
+
addExport(name: string, imported: string, specifier?: string | null) {
|
|
32
39
|
this.exports.push({name, specifier, imported});
|
|
33
40
|
}
|
|
34
41
|
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
// @flow
|
|
2
1
|
import type {TSModule, Export} from './TSModule';
|
|
3
2
|
|
|
4
3
|
import nullthrows from 'nullthrows';
|
|
@@ -8,7 +7,7 @@ import ts from 'typescript';
|
|
|
8
7
|
export class TSModuleGraph {
|
|
9
8
|
modules: Map<string, TSModule>;
|
|
10
9
|
mainModuleName: string;
|
|
11
|
-
mainModule:
|
|
10
|
+
mainModule: TSModule | null | undefined;
|
|
12
11
|
syntheticImportCount: number;
|
|
13
12
|
|
|
14
13
|
constructor(mainModuleName: string) {
|
|
@@ -25,7 +24,7 @@ export class TSModuleGraph {
|
|
|
25
24
|
}
|
|
26
25
|
}
|
|
27
26
|
|
|
28
|
-
getModule(name: string):
|
|
27
|
+
getModule(name: string): TSModule | null | undefined {
|
|
29
28
|
return this.modules.get(name);
|
|
30
29
|
}
|
|
31
30
|
|
|
@@ -77,17 +76,28 @@ export class TSModuleGraph {
|
|
|
77
76
|
getExport(
|
|
78
77
|
m: TSModule,
|
|
79
78
|
e: Export,
|
|
80
|
-
):
|
|
79
|
+
):
|
|
80
|
+
| {
|
|
81
|
+
imported: string;
|
|
82
|
+
module: TSModule;
|
|
83
|
+
name: string;
|
|
84
|
+
}
|
|
85
|
+
| null
|
|
86
|
+
| undefined {
|
|
87
|
+
// @ts-expect-error TS2339
|
|
81
88
|
invariant(e.name != null);
|
|
89
|
+
// @ts-expect-error TS2339
|
|
82
90
|
let exportName = e.name;
|
|
83
91
|
|
|
84
92
|
// Re-export
|
|
93
|
+
// @ts-expect-error TS2339
|
|
85
94
|
if (e.specifier && e.imported) {
|
|
86
95
|
let m = this.getModule(e.specifier);
|
|
87
96
|
if (!m) {
|
|
88
97
|
return null;
|
|
89
98
|
}
|
|
90
99
|
|
|
100
|
+
// @ts-expect-error TS2339
|
|
91
101
|
let exp = this.resolveExport(m, e.imported);
|
|
92
102
|
if (!exp) {
|
|
93
103
|
return null;
|
|
@@ -114,6 +124,7 @@ export class TSModuleGraph {
|
|
|
114
124
|
return {
|
|
115
125
|
module: m,
|
|
116
126
|
name: exportName,
|
|
127
|
+
// @ts-expect-error TS2339
|
|
117
128
|
imported: e.imported != null ? m.getName(e.imported) : exportName,
|
|
118
129
|
};
|
|
119
130
|
}
|
|
@@ -122,7 +133,14 @@ export class TSModuleGraph {
|
|
|
122
133
|
module: TSModule,
|
|
123
134
|
local: string,
|
|
124
135
|
imported?: string,
|
|
125
|
-
):
|
|
136
|
+
):
|
|
137
|
+
| {
|
|
138
|
+
imported: string;
|
|
139
|
+
module: TSModule;
|
|
140
|
+
name: string;
|
|
141
|
+
}
|
|
142
|
+
| null
|
|
143
|
+
| undefined {
|
|
126
144
|
let i = module.imports.get(local);
|
|
127
145
|
if (!i) {
|
|
128
146
|
return null;
|
|
@@ -140,8 +158,16 @@ export class TSModuleGraph {
|
|
|
140
158
|
resolveExport(
|
|
141
159
|
module: TSModule,
|
|
142
160
|
name: string,
|
|
143
|
-
):
|
|
161
|
+
):
|
|
162
|
+
| {
|
|
163
|
+
imported: string;
|
|
164
|
+
module: TSModule;
|
|
165
|
+
name: string;
|
|
166
|
+
}
|
|
167
|
+
| null
|
|
168
|
+
| undefined {
|
|
144
169
|
for (let e of module.exports) {
|
|
170
|
+
// @ts-expect-error TS2339
|
|
145
171
|
if (e.name === name) {
|
|
146
172
|
return this.getExport(module, e);
|
|
147
173
|
} else if (e.specifier) {
|
|
@@ -159,9 +185,18 @@ export class TSModuleGraph {
|
|
|
159
185
|
getAllExports(
|
|
160
186
|
module: TSModule = nullthrows(this.mainModule),
|
|
161
187
|
excludeDefault: boolean = false,
|
|
162
|
-
): Array<{
|
|
163
|
-
|
|
188
|
+
): Array<{
|
|
189
|
+
imported: string;
|
|
190
|
+
module: TSModule;
|
|
191
|
+
name: string;
|
|
192
|
+
}> {
|
|
193
|
+
let res: Array<{
|
|
194
|
+
imported: string;
|
|
195
|
+
module: TSModule;
|
|
196
|
+
name: string;
|
|
197
|
+
}> = [];
|
|
164
198
|
for (let e of module.exports) {
|
|
199
|
+
// @ts-expect-error TS2339
|
|
165
200
|
if (e.name && (!excludeDefault || e.name !== 'default')) {
|
|
166
201
|
let exp = this.getExport(module, e);
|
|
167
202
|
if (exp) {
|
|
@@ -209,7 +244,7 @@ export class TSModuleGraph {
|
|
|
209
244
|
exportedNames.set(e.name, e.module);
|
|
210
245
|
}
|
|
211
246
|
|
|
212
|
-
let importedSymbolsToUpdate = [];
|
|
247
|
+
let importedSymbolsToUpdate: Array<Array<TSModule | string>> = [];
|
|
213
248
|
|
|
214
249
|
// Assign unique names across all modules
|
|
215
250
|
for (let m of this.modules.values()) {
|
|
@@ -240,11 +275,14 @@ export class TSModuleGraph {
|
|
|
240
275
|
let imports = new Map();
|
|
241
276
|
|
|
242
277
|
for (let [m, orig] of importedSymbolsToUpdate) {
|
|
278
|
+
// @ts-expect-error TS2339
|
|
243
279
|
let imp = nullthrows(m.imports.get(orig));
|
|
280
|
+
// @ts-expect-error TS2345
|
|
244
281
|
let imported = nullthrows(this.resolveImport(m, orig));
|
|
245
282
|
|
|
246
283
|
// If the module is bundled, map the local name to the original exported name.
|
|
247
284
|
if (this.modules.has(imp.specifier)) {
|
|
285
|
+
// @ts-expect-error TS2339
|
|
248
286
|
m.names.set(orig, imported.imported);
|
|
249
287
|
continue;
|
|
250
288
|
}
|
|
@@ -269,6 +307,7 @@ export class TSModuleGraph {
|
|
|
269
307
|
importedNames.set(imported.imported, name);
|
|
270
308
|
}
|
|
271
309
|
|
|
310
|
+
// @ts-expect-error TS2339
|
|
272
311
|
m.names.set(orig, name);
|
|
273
312
|
}
|
|
274
313
|
|