Skip to content

Commit

Permalink
chore(vue-tsc): don't block --composite, --incremental
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsoncodehk committed Apr 22, 2023
1 parent 2621aa2 commit b596a60
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions packages/vue-tsc/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@ export function createProgram(options: ts.CreateProgramOptions) {
if (!options.options.noEmit && options.options.noEmitOnError)
throw toThrow('noEmitOnError is not supported');

if (options.options.composite || options.options.incremental)
throw toThrow('composite / incremental is not supported');

if (options.options.extendedDiagnostics || options.options.generateTrace)
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.');

Expand Down

0 comments on commit b596a60

Please sign in to comment.