mirror of
https://github.com/zebrajr/react.git
synced 2026-01-15 12:15:22 +00:00
Just trying this out as a small hack for fun. Nothing serious is planned. Inits an MCP server that has 1 assistant prompt and two capabilities.
23 lines
601 B
JSON
23 lines
601 B
JSON
{
|
|
"extends": "@tsconfig/strictest/tsconfig.json",
|
|
"compilerOptions": {
|
|
"module": "Node16",
|
|
"moduleResolution": "Node16",
|
|
"rootDir": "../",
|
|
"noEmit": true,
|
|
"jsx": "react-jsxdev",
|
|
"lib": ["ES2022"],
|
|
|
|
// weaken strictness from preset
|
|
"importsNotUsedAsValues": "remove",
|
|
"noUncheckedIndexedAccess": false,
|
|
"noUnusedParameters": false,
|
|
"useUnknownInCatchVariables": false,
|
|
"target": "ES2022",
|
|
// ideally turn off only during dev, or on a per-file basis
|
|
"noUnusedLocals": false,
|
|
},
|
|
"exclude": ["node_modules"],
|
|
"include": ["src/**/*.ts"],
|
|
}
|