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 541B

12345678910111213141516171819202122
  1. {
  2. "extends": "../../tsconfig.base.json",
  3. "include": ["src"],
  4. "exclude": ["node_modules", "dist", "docs"],
  5. "compilerOptions": {
  6. "outDir": "./dist/types",
  7. "baseUrl": ".",
  8. "rootDir": "src",
  9. "emitDeclarationOnly": false,
  10. "experimentalDecorators": true,
  11. "useDefineForClassFields": true,
  12. "paths": {
  13. "*": ["src/*"],
  14. "@tldraw/core": ["../packages/core"]
  15. }
  16. },
  17. "references": [{ "path": "../../packages/core" }],
  18. "typedocOptions": {
  19. "entryPoints": ["src/index.ts"],
  20. "out": "docs"
  21. }
  22. }