added community version

This commit is contained in:
2025-10-24 23:52:57 +02:00
parent 05fa87c638
commit 5e7c5aabfb
12 changed files with 17913 additions and 2328 deletions

View File

@@ -1,15 +1,22 @@
{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"outDir": "./dist",
"rootDir": "./src",
"module": "ESNext",
"moduleResolution": "bundler"
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true
},
"include": [
"src/**/*"
],
"references": [
{ "path": "../premium" }
"exclude": [
"node_modules",
"dist"
]
}