Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[docs] Enable synthetic default imports in TypeScript config #43747

Merged
merged 8 commits into from
Sep 14, 2024
3 changes: 2 additions & 1 deletion docs/data/material/guides/typescript/typescript.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ For types to work, it's recommended that you have at least the following options
"lib": ["es6", "dom"],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true
"strictNullChecks": true,
"allowSyntheticDefaultImports": true
}
}
```
Expand Down
Loading