tsconfig.json 858 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "extends": "@flowgram.ai/ts-config/tsconfig.flow.path.json",
  3. "compilerOptions": {
  4. "target": "ES2017",
  5. "lib": ["dom", "dom.iterable", "esnext"],
  6. "allowJs": true,
  7. "skipLibCheck": true,
  8. "noUnusedLocals": true,
  9. "noImplicitAny": true,
  10. "experimentalDecorators": true,
  11. "strictPropertyInitialization": false,
  12. "strict": true,
  13. "noEmit": true,
  14. "esModuleInterop": true,
  15. "module": "esnext",
  16. "moduleResolution": "bundler",
  17. "resolveJsonModule": true,
  18. "isolatedModules": true,
  19. "jsx": "preserve",
  20. "incremental": true,
  21. "plugins": [
  22. {
  23. "name": "next"
  24. }
  25. ],
  26. "baseUrl": "src",
  27. "paths": {
  28. "@app/*": ["app/*"],
  29. "@editor/*": ["editor/*"],
  30. }
  31. },
  32. "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
  33. "exclude": ["node_modules"]
  34. }