first commit

This commit is contained in:
JLEROY
2025-06-24 10:55:12 +02:00
commit 5da61af76e
13 changed files with 263 additions and 0 deletions

15
tsconfig.lib.json Normal file
View File

@@ -0,0 +1,15 @@
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"target": "ES2020",
"lib": ["ES2020", "DOM"],
"declaration": true,
"declarationMap": true,
"skipLibCheck": true,
"strict": true,
"moduleResolution": "node",
"outDir": "dist/out-tsc",
"types": []
},
"exclude": ["node_modules", "dist"]
}