tsconfig.json 210 B

1234567891011121314
  1. {
  2. "extends": "../../tsconfig.base.json",
  3. "compilerOptions": {
  4. "baseUrl": ".",
  5. "paths": {
  6. "~/*": ["./src/*"],
  7. }
  8. },
  9. "exclude": [
  10. "node_modules",
  11. "dist",
  12. "**/*.test.ts"
  13. ]
  14. }