vue-tsc 1.0.7 → 1.0.9

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.
package/README.md CHANGED
@@ -29,14 +29,6 @@ Check out https://github.com/johnsoncodehk/volar/discussions/640#discussioncomme
29
29
 
30
30
  ## Sponsors
31
31
 
32
- <p align="center">
33
- <a href="https://cdn.jsdelivr.net/gh/johnsoncodehk/sponsors/company/sponsors.svg">
34
- <img src="https://cdn.jsdelivr.net/gh/johnsoncodehk/sponsors/company/sponsors.svg"/>
35
- </a>
36
- </p>
37
-
38
- ---
39
-
40
32
  <p align="center">
41
33
  <a href="https://cdn.jsdelivr.net/gh/johnsoncodehk/sponsors/sponsors.svg">
42
34
  <img src="https://cdn.jsdelivr.net/gh/johnsoncodehk/sponsors/sponsors.svg"/>
package/out/proxy.js CHANGED
@@ -7,6 +7,8 @@ function createProgramProxy(options, // rootNamesOrOptions: readonly string[] |
7
7
  _options, _host, _oldProgram, _configFileParsingDiagnostics) {
8
8
  if (!options.options.noEmit && !options.options.emitDeclarationOnly)
9
9
  return doThrow('js emit is not support');
10
+ if (!options.options.noEmit && options.options.noEmitOnError)
11
+ return doThrow('noEmitOnError is not support');
10
12
  if (!options.host)
11
13
  return doThrow('!options.host');
12
14
  let program = options.oldProgram;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue-tsc",
3
- "version": "1.0.7",
3
+ "version": "1.0.9",
4
4
  "license": "MIT",
5
5
  "files": [
6
6
  "bin",
@@ -16,11 +16,11 @@
16
16
  "vue-tsc": "./bin/vue-tsc.js"
17
17
  },
18
18
  "dependencies": {
19
- "@volar/vue-language-core": "1.0.7",
20
- "@volar/vue-typescript": "1.0.7"
19
+ "@volar/vue-language-core": "1.0.9",
20
+ "@volar/vue-typescript": "1.0.9"
21
21
  },
22
22
  "peerDependencies": {
23
23
  "typescript": "*"
24
24
  },
25
- "gitHead": "96cc1acd9c16ad9cb46638a54f088199f7dddfad"
25
+ "gitHead": "be2081f56ce4608324795b8a0ae83c288a3a784d"
26
26
  }