2025-02-16 01:53:00 -05:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2025-02-16 21:30:09 -05:00
|
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
|
|
|
|
|
"target": "ES2022",
|
|
|
|
|
"lib": ["ES2023"],
|
2025-02-16 01:53:00 -05:00
|
|
|
"module": "ESNext",
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
|
|
|
|
|
/* Bundler mode */
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"moduleDetection": "force",
|
2025-02-16 21:30:09 -05:00
|
|
|
|
|
|
|
|
/* Não referencie noEmit se estiver em um projeto referenciado */
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"emitDeclarationOnly": true,
|
|
|
|
|
|
|
|
|
|
/* Necessário para referências */
|
|
|
|
|
"composite": true,
|
2025-02-16 01:53:00 -05:00
|
|
|
|
|
|
|
|
/* Linting */
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"noUncheckedSideEffectImports": true
|
|
|
|
|
},
|
2025-02-16 21:30:09 -05:00
|
|
|
"include": ["vite.config.ts"]
|
2025-02-16 01:53:00 -05:00
|
|
|
}
|