Some checks failed
Run mypy_primer on push / Run mypy_primer on push (push) Has been cancelled
Validation / Typecheck (push) Has been cancelled
Validation / Style (push) Has been cancelled
Validation / Test macos-latest (push) Has been cancelled
Validation / Test ubuntu-latest (push) Has been cancelled
Validation / Test windows-latest (push) Has been cancelled
Validation / Build (push) Has been cancelled
Validation / Required (push) Has been cancelled
39 lines
1.4 KiB
JSON
39 lines
1.4 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2020",
|
|
"module": "node16",
|
|
"lib": [
|
|
"es2020",
|
|
"esnext.disposable"
|
|
],
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"moduleResolution": "node16",
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
"outDir": "./out",
|
|
"noImplicitReturns": true,
|
|
"noImplicitOverride": true,
|
|
"checkJs": true,
|
|
"experimentalDecorators": true,
|
|
// TS 6.0 compat flags. Track removing these in a follow-up.
|
|
// "types: ['*']" preserves pre-6.0 behavior of auto-including all @types packages.
|
|
"types": ["*"],
|
|
// Silences "baseUrl is deprecated" warning; baseUrl is removed in TS 7, so this must
|
|
// be addressed before the next major upgrade.
|
|
"ignoreDeprecations": "6.0",
|
|
// Some side-effect-only imports (e.g. CSS in pylance-dev mcp-apps) have no .d.ts.
|
|
"noUncheckedSideEffectImports": false,
|
|
// Pyright/Pylance iterator code predates the stricter TReturn defaults; re-enabling
|
|
// would require widening many iterator return types.
|
|
"strictBuiltinIteratorReturn": false
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"out"
|
|
]
|
|
} |