tsconfig.json 267 B

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