Versão migrada do pacote antigo

This commit is contained in:
Luiz Silva 2026-02-25 12:53:17 -03:00
commit eab9e5269f
17 changed files with 5304 additions and 0 deletions

22
tsconfig.json Executable file
View file

@ -0,0 +1,22 @@
{
"compilerOptions": {
"outDir": "dist",
"esModuleInterop": true,
"noImplicitAny": true,
"target": "ES2020",
"jsx": "react",
"declaration": true,
"declarationDir": "dist",
"sourceMap": true,
"module": "CommonJS",
"moduleResolution": "node"
},
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"exclude": [
"node_modules"
]
}