tsconfig.json 352 B

123456789101112131415
  1. {
  2. "compilerOptions": {
  3. "target": "ES2022",
  4. "module": "ESNext",
  5. "moduleResolution": "bundler",
  6. "jsx": "react-jsx",
  7. "outDir": "./dist",
  8. "rootDir": "./src",
  9. "strict": true,
  10. "esModuleInterop": true,
  11. "skipLibCheck": true,
  12. "forceConsistentCasingInFileNames": true
  13. },
  14. "include": ["src/**/*.ts", "src/**/*.tsx"]
  15. }