tsconfig.json 301 B

1234567891011121314
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "moduleResolution": "node",
  6. "strict": true,
  7. "noEmit": true,
  8. "allowSyntheticDefaultImports": true,
  9. "paths": {
  10. "vue": ["../../../types/index.d.ts"]
  11. }
  12. },
  13. "include": ["**/*.ts", "../../../types"]
  14. }