adding in some files for the authentication flow and cleaning things u

This commit is contained in:
talksik
2022-03-16 10:56:06 -04:00
parent 0ad5429b53
commit fb35e2835e
24 changed files with 103 additions and 2968 deletions
-29
View File
@@ -1,29 +0,0 @@
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',
},
},
},
{
test: /\.tsx?$/,
exclude: /(node_modules|\.webpack)/,
use: {
loader: 'ts-loader',
options: {
transpileOnly: true,
},
},
},
];