23 lines
549 B
JSON
23 lines
549 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
// Library-specific overrides
|
|
"noEmit": false,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
|
|
// Modern library targeting ES2024 for 2025
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"target": "ES2024",
|
|
|
|
// Ensure clean builds
|
|
"removeComments": false,
|
|
"preserveConstEnums": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"]
|
|
}
|