chore: unify build output for both npm and bundle

This commit is contained in:
2026-04-26 23:02:36 +03:30
parent 5fd8f9b047
commit 8134911e17
5 changed files with 1104 additions and 29 deletions

View File

@@ -2,15 +2,15 @@
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"strict": true,
"declaration": true,
"emitDeclarationOnly": true,
"outDir": "./dist",
"rootDir": "./src",
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
"include": ["src"],
"exclude": ["node_modules", "dist", "bundle"]
}