tsconfig.json 417 B

1234567891011121314151617181920212223
  1. {
  2. "compilerOptions": {
  3. "jsx": "react-jsx",
  4. "allowJs": false,
  5. "esModuleInterop": false,
  6. "allowSyntheticDefaultImports": true,
  7. "strict": true
  8. },
  9. "files": [],
  10. "include": [],
  11. "references": [
  12. {
  13. "path": "./tsconfig.lib.json"
  14. },
  15. {
  16. "path": "./tsconfig.spec.json"
  17. },
  18. {
  19. "path": "./tsconfig.storybook.json"
  20. }
  21. ],
  22. "extends": "../../tsconfig.base.json"
  23. }