-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.dist.js
46 lines (45 loc) · 1.32 KB
/
rollup.config.dist.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import commonjs from "rollup-plugin-commonjs";
import resolve from "rollup-plugin-node-resolve";
import replace from "@rollup/plugin-replace";
import { terser } from "rollup-plugin-terser";
import typescript from "rollup-plugin-typescript2";
import nodeResolve from "rollup-plugin-node-resolve";
export default {
input: ["./src/Game.ts"],
output: {
file: "./dist/game.js",
name: "TripleTriadRemastered",
format: "iife",
sourcemap: false,
intro: "var global = window;",
},
plugins: [
replace({
"typeof CANVAS_RENDERER": JSON.stringify(true),
"typeof WEBGL_RENDERER": JSON.stringify(true),
"typeof EXPERIMENTAL": JSON.stringify(true),
"typeof PLUGIN_CAMERA3D": JSON.stringify(false),
"typeof PLUGIN_FBINSTANT": JSON.stringify(false),
"typeof FEATURE_SOUND": JSON.stringify(true),
}),
resolve({
extensions: [".ts", ".tsx"],
}),
nodeResolve({ browser: true }),
commonjs({
include: [
"node_modules/eventemitter3/**",
"node_modules/phaser/**",
"node_modules/seedrandom/**",
"node_modules/shuffle-array/**",
],
exclude: ["node_modules/phaser/src/polyfills/requestAnimationFrame.js"],
sourceMap: false,
ignoreGlobal: true,
}),
typescript(),
terser({
mangle: false,
}),
],
};