tsconfig.json 290 B

1234567891011121314
  1. {
  2. "compilerOptions": {
  3. "outDir": "./build/",
  4. "sourceMap": true,
  5. "noImplicitAny": true,
  6. "module": "es6",
  7. "target": "es5",
  8. "jsx": "react",
  9. "allowJs": true,
  10. "allowSyntheticDefaultImports": true,
  11. "removeComments": true,
  12. "moduleResolution": "node"
  13. }
  14. }