tsconfig.web.json 550 B

12345678910111213141516171819
  1. {
  2. "extends": "./tsconfig.json",
  3. "compilerOptions": {
  4. "lib": [
  5. // Should target at least ES2016 in Vue 3
  6. // Support for newer versions of language built-ins are
  7. // left for the users to include, because that would require:
  8. // - either the project doesn't need to support older versions of browsers;
  9. // - or the project has properly included the necessary polyfills.
  10. "ES2016",
  11. "DOM",
  12. "DOM.Iterable"
  13. // No `ScriptHost` because Vue 3 dropped support for IE
  14. ],
  15. "types": []
  16. }
  17. }