feat: Update dependencies and configuration for improved build process

This commit is contained in:
Lucàs
2025-05-08 18:10:05 +02:00
parent a3a9b8bc38
commit c28ce76bd8
6 changed files with 166 additions and 53 deletions
+25 -9
View File
@@ -1,15 +1,31 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "Node",
"declaration": true,
"declarationDir": "./dist",
"emitDeclarationOnly": true,
"outDir": "./dist",
"esModuleInterop": true,
"rootDir": "./src",
"baseUrl": "./",
"paths": {
"@/*": ["src/*"]
},
"lib": ["ESNext"],
"module": "esnext",
"target": "esnext",
"moduleResolution": "bundler",
"moduleDetection": "force",
"allowImportingTsExtensions": true,
"noEmit": true,
"composite": true,
"strict": true,
"skipLibCheck": true
"downlevelIteration": true,
"skipLibCheck": true,
"jsx": "react-jsx",
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"types": [
"bun-types"
]
},
"include": ["src"]
"include": [
"src/**/*.ts"
]
}