Skip to content

Commit be20a49

Browse files
committed
Add skipLibCheck to the application tests
5443048 introduced this to all the other configs, but it needs to be in the app fixture as well so that the same issue flagged up there does not blow up during the Ember build.
1 parent 8d8cb01 commit be20a49

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

Diff for: test-fixtures/skeleton-app/tsconfig.json

+11-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,17 @@
1010
"skeleton-app/*": [
1111
"app/*"
1212
]
13-
}
13+
},
14+
// We *really* don't want this on, but our hand is forced somewhat at the
15+
// moment: the types for `console-ui` are correct for consuming `inquirer`
16+
// in the pre-Node16 world, but don't interoperate correctly when consumed
17+
// by a CJS-default package in the TS Node16+ world *and* consume an ESM
18+
// package. Our path forward there is to update `console-ui` to publish a
19+
// dual-mode package with types and runtime code to support it.
20+
//
21+
// NOTE TO READERS: this is *only* required because of a very specific bit
22+
// of weird wiring in our test harness; it will *not* affect normal apps.
23+
"skipLibCheck": true
1424
},
1525
"include": [
1626
"app"

0 commit comments

Comments
 (0)