Browse Source

fix(ts): set moduleResolution to bundler

pull/6105/head
Kenrick Tandrian 1 month ago
parent
commit
552fce1d25
  1. 1
      libs/ui/tsconfig.json
  2. 3
      tsconfig.base.json

1
libs/ui/tsconfig.json

@ -14,6 +14,7 @@
}
],
"compilerOptions": {
"moduleResolution": "bundler",
"target": "es2022",
// TODO: Remove once solved in tsconfig.base.json
"strict": false,

3
tsconfig.base.json

@ -4,9 +4,8 @@
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "bundler",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",

Loading…
Cancel
Save