tsconfig.json 443 B

12345678910111213141516171819
  1. {
  2. "compilerOptions": {
  3. "lib": ["ESNext"],
  4. "baseUrl": "src",
  5. "outDir": "./build/",
  6. "sourceMap": true,
  7. "noImplicitAny": true,
  8. "module": "es6",
  9. "target": "es5",
  10. "jsx": "react",
  11. "allowJs": true,
  12. "allowSyntheticDefaultImports": true,
  13. "removeComments": true,
  14. "moduleResolution": "Bundler",
  15. "strict": true,
  16. "skipLibCheck": true
  17. },
  18. "exclude": ["node_modules", "build", "jest.config.js"]
  19. }