Browse Source

fix(ui): inherit base tsconfig target compiler option

pull/7642/head
KenTandrian 2 days ago
parent
commit
19bf980a7f
  1. 2
      libs/ui/tsconfig.json

2
libs/ui/tsconfig.json

@ -15,10 +15,10 @@
], ],
"compilerOptions": { "compilerOptions": {
"module": "preserve", "module": "preserve",
"target": "es2021",
// TODO: Remove once solved in tsconfig.base.json // TODO: Remove once solved in tsconfig.base.json
"strict": false, "strict": false,
"strictNullChecks": true, "strictNullChecks": true,
"useDefineForClassFields": false,
"noImplicitReturns": true, "noImplicitReturns": true,
"noFallthroughCasesInSwitch": true "noFallthroughCasesInSwitch": true
}, },

Loading…
Cancel
Save