tsconfig.json 521 B

12345678910111213141516171819
  1. {
  2. "compilerOptions": {
  3. "target": "es5",
  4. "lib": ["dom", "dom.iterable", "esnext"],
  5. "allowJs": true,
  6. "skipLibCheck": true,
  7. "esModuleInterop": true,
  8. "sourceMap": true,
  9. "allowSyntheticDefaultImports": true,
  10. "strict": true,
  11. "forceConsistentCasingInFileNames": true,
  12. "module": "esnext",
  13. "isolatedModules": false,
  14. "noEmit": false,
  15. "jsx": "react",
  16. "moduleResolution":"Node"
  17. },
  18. "include": ["./src/**/*"]
  19. }