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.
20 lines
467 B
JSON
20 lines
467 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"lib": ["es6", "es2016", "es2017", "dom"],
|
|
"strict": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"noEmit": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["dist", "node_modules"]
|
|
}
|