Migrate app to TypeScript (#1637)
* Initial setup and migrated src/common * WIP * WIP * WIP * Main module basically finished * Renderer process migrated * Added CI step and some fixes * Fixed remainder of issues and added proper ESLint config * Fixed a couple issues * Progress! * Some more fixes * Fixed a test * Fix build step * PR feedback
This commit is contained in:
@@ -16,6 +16,7 @@ const WEBSERVER_PORT = 9001;
|
||||
module.exports = merge(base, {
|
||||
entry: {
|
||||
test: './test/unit/index.js',
|
||||
e2e: './test/specs/index.js',
|
||||
},
|
||||
output: {
|
||||
path: path.resolve(__dirname, 'dist/tests'),
|
||||
@@ -23,8 +24,8 @@ module.exports = merge(base, {
|
||||
},
|
||||
module: {
|
||||
rules: [{
|
||||
test: /\.(js|jsx)?$/,
|
||||
use: ['babel-loader'],
|
||||
test: /\.(js|jsx|ts|tsx)?$/,
|
||||
use: ['babel-loader', 'shebang-loader'],
|
||||
}],
|
||||
},
|
||||
externals: {
|
||||
@@ -37,6 +38,7 @@ module.exports = merge(base, {
|
||||
net: 'require("net")',
|
||||
repl: 'require("repl")',
|
||||
tls: 'require("tls")',
|
||||
spectron: 'require("spectron")',
|
||||
},
|
||||
node: {
|
||||
__filename: false,
|
||||
|
Reference in New Issue
Block a user