mirror of
https://github.com/afkomputer/os.git
synced 2025-04-04 04:00:16 -04:00
36 lines
865 B
JavaScript
36 lines
865 B
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: /\.(m?js|node)$/,
|
|
parser: { amd: false },
|
|
use: {
|
|
loader: '@vercel/webpack-asset-relocator-loader',
|
|
options: {
|
|
outputAssetBase: 'native_modules',
|
|
},
|
|
},
|
|
},
|
|
// 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
|
|
* }
|
|
* }]
|
|
* }
|
|
*/
|
|
];
|