Skip to content

Commit b596a60

Browse files
committed
chore(vue-tsc): don't block --composite, --incremental
1 parent 2621aa2 commit b596a60

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

packages/vue-tsc/src/index.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@ export function createProgram(options: ts.CreateProgramOptions) {
2222
if (!options.options.noEmit && options.options.noEmitOnError)
2323
throw toThrow('noEmitOnError is not supported');
2424

25-
if (options.options.composite || options.options.incremental)
26-
throw toThrow('composite / incremental is not supported');
27-
2825
if (options.options.extendedDiagnostics || options.options.generateTrace)
2926
throw toThrow('--extendedDiagnostics / --generateTrace is not supported, please run `Write Virtual Files` in VSCode to write virtual files and use `--extendedDiagnostics` / `--generateTrace` via tsc instead of vue-tsc to debug.');
3027

0 commit comments

Comments
 (0)