commit inicial do projeto
Some checks failed
Test / test (macos-latest) (push) Waiting to run
Test / test (windows-latest) (push) Waiting to run
Test / test (ubuntu-latest) (push) Failing after 13m2s

This commit is contained in:
Junior
2026-04-21 18:18:56 -03:00
commit 15e6692647
187 changed files with 102037 additions and 0 deletions

22
tsconfig.json Normal file
View File

@@ -0,0 +1,22 @@
{
"compilerOptions": {
"incremental": true,
"target": "es2022",
"module": "node16",
"lib": ["dom", "es2022"],
"jsx": "react-jsx",
"strict": true,
"sourceMap": true,
"moduleResolution": "node16",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"allowJs": true,
"outDir": ".erb/dll",
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
},
"exclude": ["test", "release/build", "release/app/dist", ".erb/dll"]
}