tsconfig.json 238 B

12345678910
  1. {
  2. "extends": "../tsconfig.json",
  3. "compilerOptions": {
  4. "esModuleInterop": true,
  5. "jsx": "react",
  6. "jsxFactory": "jsx",
  7. "jsxFragmentFactory": "Fragment"
  8. },
  9. "include": ["./**/*.ts", "./unit/*.tsx", "../src/index.ts"]
  10. }