refactor(core): move app para src e padroniza estrutura

This commit is contained in:
Felipe Coutinho
2026-03-12 19:22:50 +00:00
parent d92e70f1b9
commit b0fbb1062a
567 changed files with 8981 additions and 5014 deletions

View File

@@ -1,5 +1,6 @@
{
"compilerOptions": {
"baseUrl": ".",
"target": "ES2017",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
@@ -19,13 +20,17 @@
}
],
"paths": {
"@/*": ["./*"]
"@/*": ["./src/*", "./*"]
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"src/**/*.ts",
"src/**/*.tsx",
"public/fonts/**/*.ts",
"scripts/**/*.ts",
"*.ts",
"*.mjs",
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
],