Skip to content

Commit b401c8a

Browse files
committed
block variable
1 parent 035ef22 commit b401c8a

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

extensions/microsoft-employee-experience/src/WebpackConfigs/WebpackConfigs.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
const path = require('path');
2-
const Webpack = require('webpack');
1+
/* eslint-disable no-var */
2+
var path = require('path');
3+
var Webpack = require('webpack');
34
const { stringifyConfigValues, generateHTMLFile, generateDevServerSettings } = require('./WebpackConfigs.utils');
45

56
type GlobalVariables = { [key: string]: string | number | boolean };

extensions/microsoft-employee-experience/src/WebpackConfigs/WebpackConfigs.utils.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
const fs = require('fs');
2-
const path = require('path');
1+
/* eslint-disable no-var */
2+
var fs = require('fs');
3+
var path = require('path');
34

45
module.exports = {
56
stringifyConfigValues: (config: { [key: string]: any }) => {

0 commit comments

Comments
 (0)