feat: update TypeScript version and refine tsconfig settings

This commit is contained in:
2026-02-22 16:40:11 -05:00
parent e0808de270
commit 03f30ecbcd
4 changed files with 17 additions and 4 deletions

View File

@@ -5,7 +5,7 @@
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"rootDir": "./",
"rootDir": ".",
"outDir": "./dist",
"moduleResolution": "nodenext",
"esModuleInterop": true,
@@ -16,11 +16,11 @@
"moduleDetection": "force",
"isolatedModules": true,
"removeComments": true,
"noUncheckedSideEffectImports": true,
"skipLibCheck": true,
"baseUrl": "./",
"paths": {
"@/*": [
"lib/*"
"./lib/*"
]
},
"plugins": [
@@ -33,10 +33,11 @@
}
],
"typeRoots": [
"lib/types"
"lib/shared/types"
]
},
"include": [
"lib/**/*",
"sandbox/**/*",
],
}