diff --git a/packages/typescript-config/base.json b/packages/typescript-config/base.json index 3dc01e19a..188b73fdd 100644 --- a/packages/typescript-config/base.json +++ b/packages/typescript-config/base.json @@ -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"