56d1cf0bc2
Migrate from tsc to tsdown for multi-format (ESM/CJS) builds. Replace Prettier with Biome for formatting and linting. Upgrade ESLint to flat config (v10) and TypeScript to v6. Drop Yarn in favor of npm for package management. Configure dual ESM/CJS exports with proper type declarations. Add publishing configuration and release scripts. Reformat source files to 2-space indentation.
29 lines
588 B
JSON
29 lines
588 B
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/2.4.16/schema.json",
|
|
"vcs": {
|
|
"enabled": true,
|
|
"clientKind": "git",
|
|
"useIgnoreFile": true
|
|
},
|
|
"files": {
|
|
"ignoreUnknown": false,
|
|
"includes": ["**", "!**/build", "!**/node_modules"]
|
|
},
|
|
"formatter": {
|
|
"enabled": true,
|
|
"indentStyle": "space",
|
|
"indentWidth": 2,
|
|
"lineWidth": 120
|
|
},
|
|
"linter": {
|
|
"enabled": false
|
|
},
|
|
"assist": { "actions": { "source": { "organizeImports": "on" } } },
|
|
"javascript": {
|
|
"formatter": {
|
|
"quoteStyle": "single",
|
|
"trailingCommas": "all"
|
|
}
|
|
}
|
|
}
|