tsconfig.json 304 B

1234567891011121314
  1. {
  2. "compilerOptions": {
  3. "allowSyntheticDefaultImports": true,
  4. "jsx": "react",
  5. "module": "commonjs",
  6. "noImplicitAny": true,
  7. "outDir": "./build/",
  8. "preserveConstEnums": true,
  9. "removeComments": true,
  10. "sourceMap": true,
  11. "target": "es5"
  12. },
  13. "include": ["./src/**/*"]
  14. }