2025-02-16 01:53:00 -05:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2025-02-16 21:30:09 -05:00
|
|
|
"jsx": "react",
|
|
|
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
|
|
|
"target": "ES2020",
|
|
|
|
|
"useDefineForClassFields": true,
|
|
|
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
2025-02-16 01:53:00 -05:00
|
|
|
"module": "ESNext",
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
|
|
|
|
|
/* Bundler mode */
|
2025-02-16 21:30:09 -05:00
|
|
|
"moduleResolution": "node",
|
2025-02-16 01:53:00 -05:00
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"moduleDetection": "force",
|
2025-02-16 21:30:09 -05:00
|
|
|
|
|
|
|
|
/* Removendo "noEmit": true para evitar erro */
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"declarationMap": 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": ["src"]
|
2025-02-16 01:53:00 -05:00
|
|
|
}
|