tsconfig.json 236 B

1234567891011
  1. {
  2. "extends": "./tsconfig.base.json",
  3. "compilerOptions": {
  4. "paths": {
  5. "@/*": ["src/*"],
  6. "~/*": ["typings/*"]
  7. }
  8. },
  9. "include": ["src", "typings", "auto-imports.d.ts"],
  10. "exclude": ["node_modules", "**/dist"]
  11. }