mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-06-27 21:05:53 +00:00
Fix Edge not building properly. It was failing to transpile .jsx files. Add a dev script for the babel build for Edge. It's just as bad as you'd imagine. Stop using the env preset for babel builds and instead just use the class transform plugin. Add logging to Module when discovering modules.
23 lines
No EOL
375 B
JSON
23 lines
No EOL
375 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"lib": [
|
|
"dom",
|
|
"es2015",
|
|
"es2016",
|
|
"es6",
|
|
"es2017"
|
|
],
|
|
"target": "es2017",
|
|
"module": "es6",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"root": ["."],
|
|
"res": ["res"],
|
|
"styles": ["styles"],
|
|
"src": ["src"],
|
|
"utilities": ["src/utilities"],
|
|
"site": ["src/sites/twitch-twilight"]
|
|
}
|
|
}
|
|
} |