1.2.2 • Published 5 years ago

kk-egret v1.2.2

Weekly downloads
-
License
ISC
Repository
-
Last release
5 years ago

kk-ws

当前egret版本5.0.15

使用方式

    {
        "compilerOptions": {
            "module": "commonjs",
            "noImplicitAny": false,
            "removeComments": true,
            "preserveConstEnums": true,
            "sourceMap": true,
            "target": "es2015",
            "types": ["node_modules/kk-egret/lib/5.0.15/**/*.d.ts"]
        }
    }
    const CopyWebpackPlugin = require('copy-webpack-plugin')
    const path = require('path')

    module.exports = {
        mode: "development",
        devtool: "inline-source-map",
        entry: "./Main.ts",
        output: {
            filename: "bundle.js"
        },
        resolve: {
            // Add `.ts` and `.tsx` as a resolvable extension.
            extensions: [".ts", ".tsx", ".js"]
        },
        module: {
            rules: [
                // all files with a `.ts` or `.tsx` extension will be handled by `ts-loader`
                {
                    test: /\.ts?$/,
                    loader: "ts-loader",
                    options: {
                        configFile: path.resolve(__dirname, ".", "tsconfig.json")
                    }
                }
            ]
        },
        plugins:[
            new CopyWebpackPlugin([{
                from:"node_modules/kk-egret/lib/egret/5.0.15/**/*.min.js",
                to:"../server/public/web/1.0.2/[name].js"
            }])
        ]
    };
1.2.2

5 years ago

1.2.1

5 years ago

1.2.0

5 years ago

1.1.5

5 years ago

1.1.4

5 years ago

1.1.3

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago