tsconfig.json 313 B

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