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

12345678910111213141516171819202122232425262728
  1. {
  2. "compilerOptions": {
  3. "composite": true,
  4. "target": "es6",
  5. "lib": ["dom", "dom.iterable", "esnext"],
  6. "allowJs": true,
  7. "skipLibCheck": true,
  8. "strict": false,
  9. "forceConsistentCasingInFileNames": true,
  10. "noEmit": true,
  11. "esModuleInterop": true,
  12. "module": "esnext",
  13. "moduleResolution": "node",
  14. "isolatedModules": true,
  15. "jsx": "preserve",
  16. "baseUrl": ".",
  17. "rootDir": ".",
  18. "paths": {
  19. "-*": ["./*"],
  20. "@tldraw/core": ["../../packages/core"],
  21. "@tldraw/tldraw": ["../../packages/tldraw"]
  22. },
  23. "incremental": true,
  24. "resolveJsonModule": true
  25. },
  26. "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
  27. "exclude": ["node_modules"]
  28. }