carga inicial

Carga inicial
This commit is contained in:
IvanAS94
2025-12-26 17:19:37 -08:00
parent d6ba066e85
commit 9261cc3abd
2030 changed files with 127782 additions and 0 deletions

27
tsconfig.json Normal file
View File

@@ -0,0 +1,27 @@
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"module": "esnext",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"skipLibCheck": true,
"target": "es5",
"types": [
"node"
],
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2018",
"dom"
],
"allowSyntheticDefaultImports": true
}
}