feat: initial commit and template import

This commit is contained in:
Amadeu Jose Andrade Junior
2025-02-05 16:40:00 -03:00
commit 8123a94fcf
37 changed files with 12414 additions and 0 deletions

18
jsconfig.json Normal file
View File

@@ -0,0 +1,18 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "ESNext",
"jsx": "react-jsx",
"allowJs": true,
"noEmit": true,
"resolveJsonModule": true,
"moduleResolution": "Node",
"allowSyntheticDefaultImports": true,
"baseUrl": "./src",
"paths": {
"@/*": ["./*"]
}
},
"exclude": ["node_modules", "**/node_modules/*", "dist", "**/dist/*"],
"include": ["src/**/*"]
}