tsconfig.json 348 B

12345678910111213141516171819202122
  1. {
  2. "compilerOptions": {
  3. "target": "es5",
  4. "experimentalDecorators": true,
  5. "lib": [
  6. "dom",
  7. "es2015"
  8. ],
  9. "module": "commonjs",
  10. "strict": true,
  11. "noEmit": true,
  12. "baseUrl": ".",
  13. "paths": {
  14. "vue": ["../index.d.ts"]
  15. }
  16. },
  17. "include": [
  18. "../*.d.ts",
  19. "*.ts"
  20. ],
  21. "compileOnSave": false
  22. }