// install_context_view
TypeScript Strict Base Config
Install context for /configs/typescript-strict
run this command in your project root
$ blink apply typescript-strictWrites this file into your project at tsconfig.base.json. Existing files at those paths are replaced.
what gets written
// tsconfig.base.jsonjson
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"target": "es2022",
"lib": ["es2022", "dom", "dom.iterable"],
"module": "esnext",
"moduleResolution": "bundler",
"moduleDetection": "force",
"esModuleInterop": true,
"resolveJsonModule": true,
"isolatedModules": true,
"verbatimModuleSyntax": false,
"skipLibCheck": true,
"allowJs": false,
"checkJs": false,
"incremental": true,
"strict": true,
"exactOptionalPropertyTypes": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false,
"forceConsistentCasingInFileNames": true,
"useDefineForClassFields": true,
"jsx": "preserve",
"allowSyntheticDefaultImports": true
},
"exclude": ["node_modules", "dist", ".next", ".turbo", "coverage"]
}