Compare commits

..

No commits in common. "8bb2c4997b0625e5fd6b8e672382316bc84e2f27" and "c4ae9c67893790d6f55c5e914b036f45a34e69ce" have entirely different histories.

3 changed files with 15 additions and 13 deletions

6
package-lock.json generated
View File

@ -46,11 +46,11 @@
"geist": "^1.3.1", "geist": "^1.3.1",
"input-otp": "1.4.1", "input-otp": "1.4.1",
"lucide-react": "^0.454.0", "lucide-react": "^0.454.0",
"next": "^14.2.16", "next": "14.2.16",
"next-themes": "^0.4.6", "next-themes": "^0.4.6",
"react": "^18.3.1", "react": "^18",
"react-day-picker": "9.8.0", "react-day-picker": "9.8.0",
"react-dom": "^18.3.1", "react-dom": "^18",
"react-hook-form": "^7.60.0", "react-hook-form": "^7.60.0",
"react-resizable-panels": "^2.1.7", "react-resizable-panels": "^2.1.7",
"recharts": "2.15.4", "recharts": "2.15.4",

View File

@ -47,11 +47,11 @@
"geist": "^1.3.1", "geist": "^1.3.1",
"input-otp": "1.4.1", "input-otp": "1.4.1",
"lucide-react": "^0.454.0", "lucide-react": "^0.454.0",
"next": "^14.2.16", "next": "14.2.16",
"next-themes": "^0.4.6", "next-themes": "^0.4.6",
"react": "^18.3.1", "react": "^18",
"react-day-picker": "9.8.0", "react-day-picker": "9.8.0",
"react-dom": "^18.3.1", "react-dom": "^18",
"react-hook-form": "^7.60.0", "react-hook-form": "^7.60.0",
"react-resizable-panels": "^2.1.7", "react-resizable-panels": "^2.1.7",
"recharts": "2.15.4", "recharts": "2.15.4",

View File

@ -1,23 +1,25 @@
{ {
"compilerOptions": { "compilerOptions": {
"target": "esnext",
"lib": ["dom", "dom.iterable", "esnext"], "lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true, "allowJs": true,
"target": "ES6",
"skipLibCheck": true, "skipLibCheck": true,
"strict": true, "strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true, "noEmit": true,
"esModuleInterop": true, "esModuleInterop": true,
"module": "esnext", "module": "esnext",
"moduleResolution": "node", "moduleResolution": "bundler",
"resolveJsonModule": true, "resolveJsonModule": true,
"isolatedModules": true, "isolatedModules": true,
"jsx": "preserve", "jsx": "preserve",
"incremental": true, "incremental": true,
"plugins": [{ "name": "next" }], "plugins": [
"baseUrl": ".", // adiciona esta linha {
"paths": { // adiciona esta linha "name": "next"
"@/*": ["./*"] // e esta linha }
],
"paths": {
"@/*": ["./*"]
} }
}, },
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],