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": { "compilerOptions": {
"moduleResolution": "bundler",
"target": "es2022", "target": "es2022",
// TODO: Remove once solved in tsconfig.base.json // TODO: Remove once solved in tsconfig.base.json
"strict": false, "strict": false,

3
tsconfig.base.json

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

Loading…
Cancel
Save