mirror of
https://github.com/felipegcoutinho/openmonetis.git
synced 2026-05-09 02:51:46 +00:00
- Adiciona src/global.d.ts com declare module '*.css' para suportar side-effect imports de CSS com moduleResolution bundler - Adiciona ignoreDeprecations "6.0" no tsconfig para silenciar aviso de depreciação do baseUrl (será removido no TS 7) - Corrige cast de .message em better-auth 1.5.6, cujo tipo passou a ser string | RawError em chamadas de passkey Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
40 lines
724 B
JSON
40 lines
724 B
JSON
{
|
|
"compilerOptions": {
|
|
"ignoreDeprecations": "6.0",
|
|
"baseUrl": ".",
|
|
"target": "ES2017",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"incremental": true,
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"paths": {
|
|
"@/*": ["./src/*", "./*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"public/fonts/**/*.ts",
|
|
"scripts/**/*.ts",
|
|
"*.ts",
|
|
"*.mjs",
|
|
".next/types/**/*.ts",
|
|
".next/dev/types/**/*.ts"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|