You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tsconfig.json 386B

1234567891011121314151617
  1. {
  2. "extends": "../../tsconfig.base.json",
  3. "exclude": ["node_modules", "dist", "docs"],
  4. "compilerOptions": {
  5. "outDir": "./dist/types",
  6. "rootDir": "src",
  7. "baseUrl": ".",
  8. "paths": {
  9. "~*": ["./src/*"]
  10. }
  11. },
  12. "references": [{ "path": "../vec" }, { "path": "../intersect" }],
  13. "typedocOptions": {
  14. "entryPoints": ["src/index.ts"],
  15. "out": "docs"
  16. }
  17. }