024d48a1d7
* fix: resolve reported lint violations * chore: align local quality checks with CI * fix: migrate settings tab lifecycle
31 lines
844 B
JSON
31 lines
844 B
JSON
{
|
|
"compilerOptions": {
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@test/*": ["./tests/*"],
|
|
"@claudian/collab-protocol": [
|
|
"./packages/collab-protocol/dist/index",
|
|
"./packages/collab-protocol/src/index.ts"
|
|
],
|
|
"@modelcontextprotocol/sdk/*": ["./node_modules/@modelcontextprotocol/sdk/dist/esm/*"]
|
|
},
|
|
"skipLibCheck": true,
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES6",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "bundler",
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"strictNullChecks": true,
|
|
"resolveJsonModule": true,
|
|
"types": ["node", "jest"],
|
|
"lib": ["DOM", "ES2022"],
|
|
"outDir": "./dist",
|
|
"rootDir": "."
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "tests/**/*.ts"]
|
|
}
|