tsconfig.json 667 B

123456789101112131415161718192021222324252627
  1. {
  2. "compilerOptions": {
  3. "allowJs": true,
  4. "allowSyntheticDefaultImports": true,
  5. "baseUrl": ".",
  6. "esModuleInterop": true,
  7. "forceConsistentCasingInFileNames": true,
  8. "importHelpers": true,
  9. "jsx": "react",
  10. "lib": ["dom", "esnext"],
  11. "module": "esnext",
  12. "moduleResolution": "node",
  13. "noImplicitAny": true,
  14. "noImplicitReturns": true,
  15. "noImplicitThis": true,
  16. "noUnusedLocals": true,
  17. "outDir": "./dist",
  18. "pretty": true,
  19. "skipLibCheck": true,
  20. "sourceMap": true,
  21. "strictNullChecks": true,
  22. "suppressImplicitAnyIndexErrors": true,
  23. "target": "es5"
  24. },
  25. "include": ["./src/**/*", "./spec/**/*"]
  26. }