package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "@vue/tsconfig",
  3. "version": "0.1.3",
  4. "description": "A base TSConfig for working with Vue.js",
  5. "main": "tsconfig.json",
  6. "repository": {
  7. "type": "git",
  8. "url": "git+https://github.com/vuejs/tsconfig.git"
  9. },
  10. "keywords": [
  11. "vue",
  12. "tsconfig"
  13. ],
  14. "author": "Haoqun Jiang <haoqunjiang+npm@gmail.com>",
  15. "license": "MIT",
  16. "bugs": {
  17. "url": "https://github.com/vuejs/tsconfig/issues"
  18. },
  19. "homepage": "https://github.com/vuejs/tsconfig#readme",
  20. "peerDependencies": {
  21. "@types/node": "*"
  22. },
  23. "peerDependenciesMeta": {
  24. "@types/node": {
  25. "optional": true
  26. }
  27. },
  28. "publishConfig": {
  29. "access": "public"
  30. },
  31. "scripts": {
  32. "test": "echo \"Error: no test specified\" && exit 1"
  33. },
  34. "readme": "# `@vue/tsconfig`\n\nTSConfigs for Vue projects to extend.\n\nRequires TypeScript >= 4.5.\n\nInstall:\n\n```sh\nnpm add -D @vue/tsconfig\n```\n\nAdd one of the available configurations to your `tsconfig.json`:\n\nThe base configuration (runtime-agnostic):\n\n```json\n\"extends\": \"@vue/tsconfig/tsconfig.json\"\n```\n\nConfiguration for Browser environment:\n\n```json\n\"extends\": \"@vue/tsconfig/tsconfig.web.json\"\n```\n\nConfiguration for Node environment:\n\n```json\n\"extends\": \"@vue/tsconfig/tsconfig.node.json\"\n```\n"
  35. }