2
0

tsconfig.json 336 B

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