Initial commit - version 1.0.0

This commit is contained in:
2023-05-27 10:00:18 -04:00
commit fe6531c8ec
15 changed files with 8795 additions and 0 deletions

24
tsconfig.production.json Normal file
View File

@@ -0,0 +1,24 @@
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"declaration": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"jsx": "react",
"lib": ["es2022", "dom"],
"moduleResolution": "node",
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"outDir": "lib/",
"removeComments": true,
"rootDirs": ["./", "src/"],
"sourceMap": false,
"strict": true,
"strictNullChecks": true,
"target": "es2017"
},
"include": ["src"]
}