tsconfig.json 287 B

1234567891011121314
  1. {
  2. "compilerOptions": {
  3. "rootDir": ".",
  4. "outDir": "./dist/",
  5. "noImplicitAny": true,
  6. "module": "esnext",
  7. "moduleResolution": "bundler",
  8. "target": "esnext",
  9. "jsx": "react-jsx",
  10. "allowJs": true
  11. },
  12. "include": ["src/**/*"],
  13. "exclude": ["node_modules"]
  14. }