diff --git a/apps/demos/utils/bundle/index.js b/apps/demos/utils/bundle/index.js index 615c18298f27..4e8f7184674d 100644 --- a/apps/demos/utils/bundle/index.js +++ b/apps/demos/utils/bundle/index.js @@ -58,10 +58,10 @@ const getDefaultBuilderConfig = (framework, additionPaths, map) => ({ meta: { '*': { build: false, + transpile: true, }, 'devextreme/*': { build: true, - transpile: true, }, 'devexpress-gantt': { build: true, @@ -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/*' : '*'}`, diff --git a/packages/devextreme-angular/tsconfig.json b/packages/devextreme-angular/tsconfig.json index 40f8eaff1e71..9536e08022d7 100644 --- a/packages/devextreme-angular/tsconfig.json +++ b/packages/devextreme-angular/tsconfig.json @@ -1,7 +1,6 @@ { "extends": "../../tsconfig.json", "compilerOptions": { - "target": "ES2017", "module": "ES2015", "experimentalDecorators": true, "emitDecoratorMetadata": true, diff --git a/packages/devextreme-vue/tsconfig.json b/packages/devextreme-vue/tsconfig.json index 647861855b35..db6bafa846f1 100644 --- a/packages/devextreme-vue/tsconfig.json +++ b/packages/devextreme-vue/tsconfig.json @@ -1,11 +1,7 @@ { "extends": "../../tsconfig.json", "compilerOptions": { - "skipLibCheck": true, - "lib": [ - "es2015", - "dom" - ] + "skipLibCheck": true }, "include": [ "src/core/**/*" diff --git a/tsconfig.json b/tsconfig.json index bcffd85790bf..4d346779f9e8 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -26,7 +26,7 @@ }, "esModuleInterop": true, "allowSyntheticDefaultImports": true, - "target": "es5", + "target": "es2020", "module": "commonjs", "jsx": "react", "noEmitOnError": true, @@ -40,9 +40,6 @@ "noUnusedParameters": true, "strictNullChecks": true, "lib": [ - "esnext", - "es2015", - "es2015.iterable", "dom" ] },