## Default Import
The default import of `@total-typescript/tsconfig` now points to the **bundler DOM app config** (`bundler/dom.json`). This is optimized for apps running in the DOM using an external bundler (like Vite, Remix, Astro, etc.).
For most users, you can now simply use:
```jsonc
{
"extends": "@total-typescript/tsconfig"
}
```
This is equivalent to:
```jsonc
{
"extends": "@total-typescript/tsconfig/bundler/dom/app"
}
```
Summary
exportsfield inpackage.jsonso the default import (@total-typescript/tsconfig) points to./bundler/dom.json.README.mdto clarify that the default import is now the bundler DOM app config.Proposed Changes
package.json
exports:README.md
@total-typescript/tsconfignow points tobundler/dom.json, and provide a usage example.@total-typescript/tsconfig/bundler/dom/app.See below for the suggested file changes:
{ ... "exports": { ".": "./bundler/dom.json", ... } }