updating tsconfig.json

This commit is contained in:
Aiday Marlen Kyzy 2026-06-14 00:38:41 +02:00
parent 9b9a595ed5
commit 86e0e66c34
No known key found for this signature in database
GPG key ID: D55A35EAC79FDA9A

View file

@ -2,18 +2,23 @@
"compilerOptions": {
"inlineSourceMap": true,
"inlineSources": true,
"module": "ESNext",
"module": "Node16",
"target": "ES2021",
"strict": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"moduleResolution": "node",
"moduleResolution": "node16",
"isolatedModules": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"lib": ["ES2021", "DOM"]
"lib": [
"ES2021",
"DOM"
]
},
"include": ["src/**/*.ts"]
}
"include": [
"src/**/*.ts"
]
}