mirror of
https://github.com/keyboardio/Chrysalis.git
synced 2025-12-13 20:36:54 +01:00
75 lines
1.6 KiB
JavaScript
75 lines
1.6 KiB
JavaScript
module.exports = [
|
|
// Add support for native node modules
|
|
{
|
|
// We're specifying native_modules in the test because the asset relocator loader generates a
|
|
// "fake" .node file which is really a cjs file.
|
|
test: /native_modules[/\\].+\.node$/,
|
|
use: 'node-loader',
|
|
},
|
|
{
|
|
test: /[/\\]node_modules[/\\].+\.(m?js|node)$/,
|
|
parser: { amd: false },
|
|
use: {
|
|
loader: '@vercel/webpack-asset-relocator-loader',
|
|
options: {
|
|
outputAssetBase: 'native_modules',
|
|
},
|
|
},
|
|
},
|
|
{
|
|
resolve: {
|
|
fallback: {
|
|
// Use can only include required modules. Also install the package.
|
|
// for example: npm install --save-dev assert
|
|
url: false,
|
|
fs: false,
|
|
child_process: false,
|
|
zlib: false,
|
|
process: false,
|
|
assert: false,
|
|
crypto: false,
|
|
http: false,
|
|
https: false,
|
|
os: false,
|
|
path: false,
|
|
buffer: false,
|
|
stream: false,
|
|
}
|
|
}},
|
|
|
|
{
|
|
test: /\.jsx?$/,
|
|
use: {
|
|
loader: 'babel-loader',
|
|
options: {
|
|
exclude: /node_modules/,
|
|
presets: ['@babel/preset-react']
|
|
}
|
|
}
|
|
},
|
|
{
|
|
test: /\.(png|jpe?g|gif)$/i,
|
|
use: [
|
|
{
|
|
loader: 'file-loader',
|
|
},
|
|
],
|
|
},
|
|
// Put your webpack loader rules in this array. This is where you would put
|
|
// your ts-loader configuration for instance:
|
|
/**
|
|
* Typescript Example:
|
|
*
|
|
* {
|
|
* test: /\.tsx?$/,
|
|
* exclude: /(node_modules|.webpack)/,
|
|
* loaders: [{
|
|
* loader: 'ts-loader',
|
|
* options: {
|
|
* transpileOnly: true
|
|
* }
|
|
* }]
|
|
* }
|
|
*/
|
|
];
|