This commit is contained in:
2024-02-07 01:33:07 -05:00
commit c1af19d441
4088 changed files with 1260170 additions and 0 deletions

18
tsconfig.json Normal file
View File

@ -0,0 +1,18 @@
{
"include": [
"src/**/*"
],
"compilerOptions": {
"composite": true,
"declaration": true,
"declarationMap": true,
"experimentalDecorators": true,
"esModuleInterop": true,
"lib": ["ESNext", "DOM"],
"module": "ES6",
"moduleResolution": "Node",
"outDir": "./dist",
"strict": true,
"target": "ESNext"
}
}