diff --git a/package.json b/package.json index 038ef4a..550a8c9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@akdasa-studios/framework", - "version": "0.1.10", + "version": "0.1.11", "description": "Framework to build every app", "main": "dist/index.js", "typings": "dist/index.d.ts", diff --git a/tsconfig.json b/tsconfig.json index a8a55a9..23341da 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,7 +4,7 @@ "target": "ES6", // "strict": true, "moduleResolution": "node", - "importHelpers": true, + "importHelpers": false, // "declaration": true, "sourceMap": true, "outDir": "./dist", diff --git a/webpack.config.js b/webpack.config.js index eb16a03..ea9858e 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -10,7 +10,6 @@ module.exports = { path: path.resolve(__dirname, './dist'), filename: '[name].js', library: { - name: 'Framework', type: 'commonjs', }, }, @@ -24,5 +23,13 @@ module.exports = { loader: 'ts-loader' } ] - } + }, + // externals: { + // uuid: { + // commonjs: 'uuid', + // commonjs2: 'uuid', + // amd: 'uuid', + // root: 'uuid', + // }, + // }, } \ No newline at end of file