vue-tsc 1.3.18 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/out/index.js +2 -0
  2. package/package.json +4 -4
package/out/index.js CHANGED
@@ -10,6 +10,8 @@ function createProgram(options) {
10
10
  throw toThrow('js emit is not supported');
11
11
  if (!options.options.noEmit && options.options.noEmitOnError)
12
12
  throw toThrow('noEmitOnError is not supported');
13
+ if (options.options.composite || options.options.incremental)
14
+ throw toThrow('composite / incremental is not supported');
13
15
  if (options.options.extendedDiagnostics || options.options.generateTrace)
14
16
  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.');
15
17
  if (!options.host)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue-tsc",
3
- "version": "1.3.18",
3
+ "version": "1.4.0",
4
4
  "main": "out/index.js",
5
5
  "license": "MIT",
6
6
  "files": [
@@ -17,12 +17,12 @@
17
17
  "vue-tsc": "./bin/vue-tsc.js"
18
18
  },
19
19
  "dependencies": {
20
- "@volar/vue-language-core": "1.3.18",
21
- "@volar/vue-typescript": "1.3.18",
20
+ "@volar/vue-language-core": "1.4.0",
21
+ "@volar/vue-typescript": "1.4.0",
22
22
  "semver": "^7.3.8"
23
23
  },
24
24
  "peerDependencies": {
25
25
  "typescript": "*"
26
26
  },
27
- "gitHead": "06d0d14abe06f57028fded61a06c999d5f43a3bf"
27
+ "gitHead": "5a9f46db24151563e0b4f324c20d60561d82097d"
28
28
  }