tsconfig.json 739 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "extends": "@flowgram.ai/ts-config/tsconfig.flow.path.json",
  3. "compilerOptions": {
  4. "rootDir": "./src",
  5. "outDir": "./dist",
  6. "experimentalDecorators": true,
  7. "target": "es2020",
  8. "module": "esnext",
  9. "strictPropertyInitialization": false,
  10. "strict": true,
  11. "esModuleInterop": true,
  12. "moduleResolution": "node",
  13. "skipLibCheck": true,
  14. "noUnusedLocals": true,
  15. "noImplicitAny": true,
  16. "allowJs": true,
  17. "resolveJsonModule": true,
  18. "types": [
  19. "node"
  20. ],
  21. "jsx": "react-jsx",
  22. "lib": [
  23. "es6",
  24. "dom",
  25. "es2020",
  26. "es2019.Array"
  27. ],
  28. "baseUrl": ".",
  29. "paths": {
  30. "@/*": [
  31. "src/*"
  32. ],
  33. }
  34. },
  35. "include": [
  36. "./src"
  37. ],
  38. }