mirror of
https://github.com/tiddly-gittly/TidGi-Desktop.git
synced 2025-12-06 02:30:47 -08:00
48 lines
1.4 KiB
JavaScript
48 lines
1.4 KiB
JavaScript
/* eslint-disable @typescript-eslint/no-var-requires */
|
|
const webpack = require('webpack');
|
|
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
|
|
const CspHtmlWebpackPlugin = require('csp-html-webpack-plugin');
|
|
const CircularDependencyPlugin = require('circular-dependency-plugin');
|
|
const CopyPlugin = require('copy-webpack-plugin');
|
|
|
|
exports.main = [
|
|
// new ForkTsCheckerWebpackPlugin(),
|
|
new CopyPlugin({
|
|
// to is relative to ./.webpack/main/
|
|
patterns: [{ from: 'src/services/wiki/wiki-worker.js', to: 'wiki-worker.js' }],
|
|
}),
|
|
new CircularDependencyPlugin({
|
|
// exclude detection of files based on a RegExp
|
|
exclude: /node_modules/,
|
|
// add errors to webpack instead of warnings
|
|
failOnError: true,
|
|
// allow import cycles that include an asyncronous import,
|
|
// e.g. via import(/* webpackMode: "weak" */ './file.js')
|
|
allowAsyncCycles: true,
|
|
// set the current working directory for displaying module paths
|
|
cwd: process.cwd(),
|
|
}),
|
|
];
|
|
|
|
exports.renderer = [
|
|
// new ForkTsCheckerWebpackPlugin(),
|
|
new webpack.DefinePlugin({
|
|
'process.env': '{}',
|
|
global: {},
|
|
}),
|
|
new CspHtmlWebpackPlugin(
|
|
{
|
|
'base-uri': ["'self'"],
|
|
'object-src': ["'none'"],
|
|
'script-src': ["'self' 'unsafe-eval'"],
|
|
'style-src': ["'self' 'unsafe-inline'"],
|
|
'frame-src': ["'none'"],
|
|
'worker-src': ["'none'"],
|
|
},
|
|
{
|
|
nonceEnabled: {
|
|
'style-src': false,
|
|
},
|
|
},
|
|
),
|
|
];
|