Skip to content

Commit

Permalink
Add minor corrections for recent transpiling update (#27346)
Browse files Browse the repository at this point in the history
  • Loading branch information
IlyaKhD committed May 16, 2024
1 parent 5378005 commit 1d80bf6
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 12 deletions.
3 changes: 1 addition & 2 deletions apps/demos/utils/bundle/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ const getDefaultBuilderConfig = (framework, additionPaths, map) => ({
meta: {
'*': {
build: false,
transpile: true,
},
'devextreme/*': {
build: true,
transpile: true,
},
'devexpress-gantt': {
build: true,
Expand All @@ -76,7 +76,6 @@ const getDefaultBuilderConfig = (framework, additionPaths, map) => ({
},
paths: {
'devextreme/*': '../../node_modules/devextreme/cjs/*',
"devextreme/bundles/dx.custom.config.js": "../../node_modules/devextreme/bundles/dx.custom.config.js",
'devexpress-gantt': '../../node_modules/devexpress-gantt/dist/dx-gantt.min.js',
'devexpress-diagram': '../../node_modules/devexpress-diagram/dist/dx-diagram.min.js',
[`devextreme-${framework}/*`]: `../../node_modules/devextreme-${framework}/${['react', 'vue'].includes(framework) ? 'cjs/*' : '*'}`,
Expand Down
1 change: 0 additions & 1 deletion packages/devextreme-angular/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"target": "ES2017",
"module": "ES2015",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
Expand Down
6 changes: 1 addition & 5 deletions packages/devextreme-vue/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"skipLibCheck": true,
"lib": [
"es2015",
"dom"
]
"skipLibCheck": true
},
"include": [
"src/core/**/*"
Expand Down
5 changes: 1 addition & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
},
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"target": "es5",
"target": "es2020",
"module": "commonjs",
"jsx": "react",
"noEmitOnError": true,
Expand All @@ -40,9 +40,6 @@
"noUnusedParameters": true,
"strictNullChecks": true,
"lib": [
"esnext",
"es2015",
"es2015.iterable",
"dom"
]
},
Expand Down

0 comments on commit 1d80bf6

Please sign in to comment.