tsconfig.json 461 B

1234567891011121314151617181920
  1. {
  2. "compilerOptions": {
  3. "lib": ["dom", "esnext"],
  4. "baseUrl": "src",
  5. "outDir": "./build/",
  6. "sourceMap": true,
  7. "noImplicitAny": true,
  8. "module": "esnext",
  9. "esModuleInterop": true,
  10. "target": "es5",
  11. "jsx": "react",
  12. "allowJs": true,
  13. "allowSyntheticDefaultImports": true,
  14. "removeComments": true,
  15. "moduleResolution": "node",
  16. "strict": true,
  17. "skipLibCheck": true
  18. },
  19. "exclude": ["node_modules", "build"]
  20. }