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.build.json 453B

123456789101112131415161718192021222324
  1. {
  2. "extends": "./tsconfig.json",
  3. "exclude": [
  4. "node_modules",
  5. "**/*.test.tsx",
  6. "**/*.test.ts",
  7. "**/*.spec.tsx",
  8. "**/*.spec.ts",
  9. "src/test",
  10. "dist",
  11. "docs"
  12. ],
  13. "compilerOptions": {
  14. "composite": false,
  15. "incremental": false,
  16. "declarationMap": false,
  17. "sourceMap": false,
  18. "emitDeclarationOnly": true,
  19. "paths": {
  20. "@tldraw/vec": ["../vec"]
  21. }
  22. },
  23. "references": [{ "path": "../vec" }]
  24. }