This commit is contained in:
Andrey Sharshov
2025-11-16 18:39:03 +01:00
commit f987e4dffe
15 changed files with 22849 additions and 0 deletions

32
tsconfig.json Normal file
View File

@@ -0,0 +1,32 @@
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"lib": ["ESNext", "DOM", "ScriptHost"],
"strict": true,
"esModuleInterop": true,
"allowJs": true,
"moduleResolution": "node",
"sourceMap": false,
"declaration": true,
"declarationMap": true,
"declarationDir": "./lib",
"outDir": "./lib",
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"strictNullChecks": false,
"resolveJsonModule": true,
"skipLibCheck": true,
"noImplicitOverride": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"baseUrl": "./",
"paths": {
"src/*": ["src/*"]
}
},
"include": ["./src", "./typings", "./test", "./docs-source"]
}