We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent edc3802 commit 1ae67fbCopy full SHA for 1ae67fb
2 files changed
packages/jco-transpile/src/opt.ts
@@ -91,7 +91,7 @@ export async function runOptimizeComponent(
91
// organize components in modules into tree parent and children
92
const nodes = componentMetadata.slice(1);
93
const getChildren = (parentIndex: number) => {
94
- const children = [];
+ const children: EnhancedModuleMetadata[] = [];
95
for (let i = 0; i < nodes.length; i++) {
96
const metadata = nodes[i];
97
if (metadata.parentIndex === parentIndex) {
packages/jco-transpile/tsconfig.json
@@ -6,6 +6,7 @@
6
"types": ["node"],
7
"module": "nodenext",
8
"moduleResolution": "nodenext",
9
+ "noImplicitAny": false,
10
"strict": true,
11
"declaration": true,
12
"sourceMap": true
0 commit comments