mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-06 08:18:39 +00:00
46 lines
1.2 KiB
JSON
46 lines
1.2 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"strict": true,
|
|
"alwaysStrict": true,
|
|
"strictNullChecks": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"allowUnreachableCode": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"target": "es2017",
|
|
"outDir": "out",
|
|
"sourceMap": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"jsx": "preserve",
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"incremental": true,
|
|
"types": ["vitest/globals"],
|
|
"baseUrl": ".",
|
|
"paths": { "@/*": ["src/*"] },
|
|
"plugins": [{ "name": "next" }]
|
|
},
|
|
"exclude": ["./out/**/*", "./node_modules/**/*", ".next/**/*"],
|
|
"include": [
|
|
"**/*.mts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"next-env.d.ts",
|
|
".next/types/**/*.ts"
|
|
]
|
|
}
|