Update base.json

This commit is contained in:
Nate Kelley 2025-07-10 12:22:18 -06:00
parent e7ee256072
commit e6307838b7
No known key found for this signature in database
GPG Key ID: FD90372AB8D98B4F
1 changed files with 4 additions and 4 deletions

View File

@ -1,23 +1,23 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"strict": true,
"allowImportingTsExtensions": false,
"allowSyntheticDefaultImports": true,
"composite": true,
"declaration": true,
"declarationMap": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"incremental": true,
"inlineSources": false,
"isolatedModules": true,
"lib": ["ESNext"],
"module": "ESNext",
"moduleResolution": "bundler",
"noEmit": false,
"preserveWatchOutput": true,
"skipLibCheck": true,
"target": "ES2022",
"lib": ["ESNext"]
"strict": true,
"target": "ES2022"
},
"exclude": ["node_modules"],
"extends": "./type-checking.json"