We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d35ef58 commit bc61038Copy full SHA for bc61038
Plugins/BridgeJS/Sources/TS2Swift/JavaScript/src/processor.js
@@ -27,7 +27,11 @@ export class TypeProcessor {
27
static createProgram(filePaths, options) {
28
const host = ts.createCompilerHost(options);
29
const roots = Array.isArray(filePaths) ? filePaths : [filePaths];
30
- return ts.createProgram(roots, options, host);
+ return ts.createProgram(roots, {
31
+ ...options,
32
+ noCheck: true,
33
+ skipLibCheck: true,
34
+ }, host);
35
}
36
37
/**
0 commit comments