2026-08-05 20:29:39 -03:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"inlineSourceMap": true,
|
|
|
|
|
"inlineSources": true,
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"target": "ES2021",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"lib": ["ES2021", "DOM"]
|
|
|
|
|
},
|
2026-08-05 20:45:13 -03:00
|
|
|
"include": ["src/**/*.ts"],
|
|
|
|
|
"exclude": ["src/**/*.test.ts"]
|
2026-08-05 20:29:39 -03:00
|
|
|
}
|