Tag: karma webpack

如何使用Karma-Webpack使用Node Typescripttypes

我已经configuration了Webpack来在Karma中传输我的TS文件。 我还包括Node和CoreJStypes。 但是,当我尝试运行我的testing,我得到… ERROR in ./test/karma/test.bundle.ts (18,30): error TS2339: Property 'context' does not exist on type 'NodeRequire'. 我尝试使用npm install –save-dev @types/webpack-env ,但是这给我更多的错误。 ERROR in /…/node_modules/@types/webpack-env/index.d.ts (183,13): error TS2403: Subsequent variable declarations must have the same type. Variable 'require' must be of type 'NodeRequire', but here has type 'RequireFunction'. ERROR in /…/node_modules/@types/webpack-env/index.d.ts (232,13): error TS2403: Subsequent […]