mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
32 lines
889 B
JSON
32 lines
889 B
JSON
{
|
|
"compilerOptions": {
|
|
"types": ["vitest/globals"],
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"lib": ["es2022", "esnext.disposable", "DOM"],
|
|
"module": "esnext",
|
|
"moduleResolution": "Bundler",
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": false,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"target": "ES2022",
|
|
"useDefineForClassFields": true,
|
|
"useUnknownInCatchVariables": false
|
|
},
|
|
"include": ["."],
|
|
"exclude": ["node_modules"],
|
|
"watchOptions": {
|
|
"watchFile": "useFsEvents",
|
|
"watchDirectory": "useFsEvents",
|
|
"fallbackPolling": "dynamicPriority",
|
|
"synchronousWatchDirectory": true,
|
|
"excludeDirectories": ["**/node_modules", "**/dist", "**/.turbo"]
|
|
}
|
|
}
|