1
0
This commit is contained in:
2025-09-10 10:21:37 +02:00
parent 637991c394
commit 806d735c35
20 changed files with 480 additions and 259 deletions

View File

@@ -1,11 +1,11 @@
{
"compilerOptions": {
"module": "NodeNext",
"target": "ESNext",
"module": "nodenext",
"target": "esnext",
"moduleResolution": "nodenext",
"rootDir": "src",
"outDir": "build",
"outFile": "build/index.ts",
"lib": [
"ESNext"
],
"esModuleInterop": true,
"alwaysStrict": true,
"strict": true,
@@ -13,10 +13,9 @@
"allowUnreachableCode": true,
"declaration": true,
"declarationMap": true,
"emitDeclarationOnly": true,
"composite": true
"rootDir": "./src"
},
"include": [
"src"
"./src"
]
}