1
0
Fork 0
mirror of https://gitlab.com/futo-org/fcast.git synced 2025-06-24 21:25:23 +00:00

Applying CI fixes

This commit is contained in:
Michael Hollister 2024-12-18 12:48:54 -06:00
parent d57e1368b1
commit fcdc4f90cf
5 changed files with 378 additions and 45 deletions

View file

@ -17,7 +17,7 @@ module.exports = [
rules: [
{
test: /\.tsx?$/,
include: /src/,
include: [path.resolve(__dirname, '../common/web'), path.resolve(__dirname, 'src')],
use: [{ loader: 'ts-loader' }]
}
],
@ -69,7 +69,7 @@ module.exports = [
rules: [
{
test: /\.tsx?$/,
include: /src/,
include: [path.resolve(__dirname, '../common/web'), path.resolve(__dirname, 'src')],
use: [{ loader: 'ts-loader' }]
}
],
@ -116,7 +116,7 @@ module.exports = [
rules: [
{
test: /\.tsx?$/,
include: /src/,
include: [path.resolve(__dirname, '../common/web'), path.resolve(__dirname, 'src')],
use: [{ loader: 'ts-loader' }]
}
],