Deltas in a separate package [wip]

This commit is contained in:
Marcel Mraz 2025-02-06 16:36:07 +01:00
parent f00069be68
commit 858c65b314
No known key found for this signature in database
GPG key ID: 4EBD6E62DC830CD2
16 changed files with 2362 additions and 4 deletions

View file

@ -0,0 +1,19 @@
{
"compilerOptions": {
"target": "ESNext",
"strict": true,
"outDir": "dist/types",
"skipLibCheck": true,
"declaration": true,
"emitDeclarationOnly": true,
"allowSyntheticDefaultImports": true,
"module": "ESNext",
"moduleResolution": "Node",
},
"exclude": [
"**/*.test.*",
"**/tests/*",
"types",
"dist",
],
}