選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

tsconfig.json 733B

1234567891011121314151617181920212223242526272829303132
  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/tldraw": ["../packages/tldraw"]
  21. },
  22. "incremental": true,
  23. "resolveJsonModule": true
  24. },
  25. "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
  26. "exclude": ["node_modules"],
  27. "references": [
  28. {
  29. "path": "../packages/tldraw"
  30. }
  31. ]
  32. }