tsconfig.json 326 B

1234567891011121314151617
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "experimentalDecorators": true,
  5. "lib": ["dom", "esnext"],
  6. "types": ["node"],
  7. "module": "esnext",
  8. "strict": true,
  9. "noEmit": true,
  10. "baseUrl": ".",
  11. "paths": {
  12. "vue": ["../index.d.ts"]
  13. }
  14. },
  15. "include": ["."],
  16. "compileOnSave": false
  17. }