从Webpack 2中的js文件导入模块

时间:2016-10-22 00:22:12

标签: webpack require webpack-2

我正在尝试在Webpack 2中使用以下语法:

import someSvc = require("./some.svc.js");

但我收到错误:

error TS2307: Cannot find module './some.svc.js'.

我做错了什么?!如何在Webpack 2中导入我的js模块?

为了彻底,我将我的项目简化为最小的例子,并提供以下文件:

webpack.config.js

var path = require('path');

module.exports = function makeWebpackConfig() {
  var config = {};
  config.entry = { 'app': './src/main.ts' };
  config.output = {
    path: root('dist'),
    filename: 'js/[name].js'
  };
  config.module = {
    rules: [
      {
        test: /\.ts$/,
        loaders: ['ts-loader']
      }
    ]
  };
  return config;
}();

// Helper functions
function root(args) {
  args = Array.prototype.slice.call(arguments, 0);
  return path.join.apply(path, [__dirname].concat(args));
}

的package.json

{
  "name": "webpack",
  "version": "1.0.0",
  "description": "",
  "main": "src/main.ts",
  "dependencies": {},
  "devDependencies": {
    "ts-loader": "^0.9.5",
    "typescript": "^2.0.3"
  },
  "scripts": {},
  "author": "",
  "license": "ISC"
}

tsconfig.js

{
  "compilerOptions": {
    "target": "ES5",
    "module": "commonjs",
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "sourceMap": true,
    "noEmitHelpers": true
  },
  "compileOnSave": false,
  "buildOnSave": false,
  "exclude": [
    "node_modules"
  ]
}

的src / main.ts

import someSvc = require("./some.svc.js");

的src / some.svc.js

if (typeof module !== 'undefined' && module.exports) {
    module.exports.config = function (conf) {
        return { abc: 123 };
    };
}

将这些文件粘贴在一起,运行webpack,您会看到相同的错误。

我错过了一些简单的工作吗?

1 个答案:

答案 0 :(得分:2)

经过长时间的挣扎,像往常一样写SO帖子不知何故引发了我的大脑或什么。

从SystemJs到Webpack我根本没想到require会发生变化。

尽管如此,我还是修改了两次。

这一行:

import someSvc = require("./some.svc.js");

变为:

var someSvc = require("./some.svc.js");

运行它(我正在使用TypeScript 2.0):

npm install @types/node --save-dev