tsconfig.json 368 B

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