- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我将 webpack 与 typescript 一起使用,并在 typescript 中自行配置。使用说明here
在我的根目录中,我有 webpack.config.base.ts
import webpack from "webpack";
const getConfig = ( appDir: string, distDir: string, env: any, args: any ): webpack.Configuration => {
const config: webpack.Configuration = {
entry: {
},
output: {
},
resolve: {
plugins: [
],
extensions: [".ts", ".tsx", ".js"]
},
devtool: "source-map",
module: {
rules: [
]
},
plugins: [
]
};
return config;
};
module.exports = getConfig;
然后我有两个项目,每个项目都有自己的 webpack.config.ts
import webpack from "webpack";
import * as path from 'path';
const getConfig = require("../../webpack.config.base");
const appDir = __dirname;
const distDir = path.resolve(__dirname, "../AppOne.Web/wwwroot");
const getConfigFactory = (env: any, args: any): webpack.Configuration => getConfig(appDir, distDir, env, args);
module.exports = getConfigFactory;
这一切都很好。 Here's此工厂 getConfig = () => {}
样式的完整示例。
我的问题是当我试图改变时
const getConfig = require("../../webpack.config.base");
到 es6 导入。这甚至作为 VS 代码的建议提供。
当我应用此更改时,我得到
这是我的 tsconfig.json
我已经启用了 [allowSyntheticDefaultImports][5]
。建议here .
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"moduleResolution": "node",
"jsx": "react",
"experimentalDecorators": true,
"lib": [
"es2015",
"dom"
],
"target": "es5",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": true,
"typeRoots": [
"./node_modules/@types/",
"./types/"
],
"baseUrl": ".",
"paths": { }
},
"include": [
"./src/**/*.ts",
"./src/**/*.tsx"
]
}
但我还是添加了 export default getConfig;
...... 并再次 npm run build
。它仍然失败。
const getConfigFactory = (env: any, args: any): webpack.Configuration => getConfig(appDir, distDir, env, args);
^
TypeError: webpack_config_base_1.default is not a function
我在把头撞到 table 上之前的最后一次尝试是改变
import getConfig from "../../webpack.config.base";
import * as base from "../../webpack.config.base";
删除webpack.config.base.ts
中的export default getConfig;
,将const getConfig
直接导出为export常量获取配置
。但此时 module.exports = getConfig
的意义何在?更不用说它也没有血腥的工作(和以前一样的问题)
const getConfigFactory = (env: any, args: any): webpack.Configuration => base.getConfig(appDir, distDir, env, args);
^
TypeError: base.getConfig is not a function
我在这里错过了什么?为什么我不能简单地将 const getConfig = require("../../webpack.config.base");
替换为 import getConfig from "../../webpack.配置.base"
附言。
这是我的 “脚本”
用于运行它
"build:appone": "webpack --mode=development --config ./src/AppOne.App/webpack.config.ts",
"build:apptwo": "webpack --mode=development --config ./src/AppTwo.App/webpack.config.ts",
最佳答案
我为多个环境(例如 development
和 production
)配置了带有 TypeScript 的 webpack 和一个通用的基本配置。为此,我利用:
11.12.0
)3.5.3
)4.39.1
)假设目录结构如下:
project/
├── ...
├── webpack.common.ts
├── webpack.development.ts
└── webpack.production.ts
其他目录结构(例如您的示例中的两个嵌套项目)也可以使用。不过,您可能必须调整以下示例中使用的路径。
webpack 的基本配置,webpack.common.ts
,看起来如下:
import webpack from 'webpack';
const configuration: webpack.Configuration = {
// Your common webpack configuration...
};
export default configuration;
针对不同环境的两个 webpack 配置使用 npm package webpack-merge
扩展了这个基本配置.您可以在 npm package @types/webpack-merge
中找到它的 TypeScript 类型.为了坚持最初的例子,development
的 webpack 配置环境看起来如下:
import webpack from 'webpack';
import merge from 'webpack-merge';
import commonWebpackConfiguration from './webpack.common';
const configuration: webpack.Configuration = merge(commonWebpackConfiguration, {
mode: 'development'
// Your `development`-specific configuration...
});
export default configuration;
与此同时,production
的 webpack 配置环境与用于 development
的环境没有什么不同环境方面import
/export
语法。
您可能已经注意到,我使用 ES6 import
/export
语法:
export default configuration;
和
import commonWebpackConfiguration from './webpack.common';
因此,不存在用于导入和导出的 CommonJS 语法(例如 module.exports
或 require
),这可以保持 webpack 配置文件的清洁并允许无缝的工作流程。根据 webpack's documentation,这实际上是使用 webpack 和 TypeScript 的推荐方式.
My problem is when I try to change
const getConfig = require("../../webpack.config.base");
to an es6 import. This is even provided as a suggestion by VS code.
module.exports
正如您观察到的错误所述,确实没有默认导出(即对象 module.exports
没有任何名为 default
的属性)。
使用 ES6 默认导出(即 export default
)实际上创建了一个命名 default
的导出就像其他命名导出一样(例如下面的 bar
)。这可以通过编译以下 TypeScript 片段来说明:
const helloWorld = () => {
console.log('Hello, world!');
};
const bar = 'foo';
export default helloWorld;
export { bar };
使用 tsc
到 JavaScript :
"use strict";
exports.__esModule = true;
var helloWorld = function () {
console.log('Hello, world!');
};
var bar = 'foo';
exports.bar = bar;
exports["default"] = helloWorld;
But I added
export default getConfig;
anyway... andnpm run build
again. It still fails.
在这种情况下,添加 allowSyntheticDefaultImports
(你已经拥有)和 esModuleInterop
(你想念的)到你的 TypeScript 配置 tsconfig.json
都设置为 true
会解决这个问题 1 .
My final attempt before smashing my head into the table was to change
import getConfig from "../../webpack.config.base";
to
import * as base from "../../webpack.config.base";
Delete the
export default getConfig;
in thewebpack.config.base.ts
and export theconst getConfig
directly asexport const getConfig
. But at that point what's the point ofmodule.exports = getConfig
.
拥有
export const getConfig = () => {...};
和
module.exports = getConfig;
同时会给你base === getConfig
(因为只有 module.exports = getConfig;
生效)。因此,调用 base.getConfig
给出 undefined
因为你定义的函数 getConfig
没有属性(property)getConfig
.因此,“base.getConfig
不是函数”。
Why can't I simply replace
const getConfig = require("../../webpack.config.base");
withimport getConfig from "../../webpack.config.base"
?
const getConfig = require("../../webpack.config.base");
是 CommonJS 导入而
import getConfig from "../../webpack.config.base";
是 ES6 导入。它们不能互换使用,因为它们本质上是不同的。您应该选择使用其中之一,但不能同时选择两者。
关于typescript - Module.exports with es6 import for webpack.config.ts in typescript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56449654/
我刚刚通过更改 import * as CodeMirror 修复了一个错误简单明了import CodeMirror . 我复制了this code . (从 TypeScript 移植) impo
我调试(在 PyCharm 中)一个脚本。我在断点处停止,然后转到调试控制台窗口,然后从那里调用导入行,如下所示: import my_util1 from my_utils 然后我调用 my_uti
谁能给我解释一下 import 语句是如何工作的? 例如,我在 myapp/app/models 包中有一个类型 User: package models type User struct {
我想导入 Control.App进入一个引用 PrimIO.PrimIO 的模块通过不合格的名称 PrimIO在很多地方。当然,问题在于 Control.App还导出一个名为 PrimIO 的定义.我
我应该使用 from foo import bar 或者 import foo.bar as bar 当导入模块 还有无需/希望更改名称 (bar)? 有什么不同吗?有关系吗? 最佳答案 假设 bar
我正在 Windows 上使用 Theano 进行深度学习实验的第一步,我很惊讶仅仅加载库需要多少时间。 这是小测试程序: from time import time t0 = time() impo
在 TypeScript 中,如何在不创建任何别名的情况下从文件“导入 *”? 例如我有一个包含顶级导出函数的文件“utils”,我想导入所有这些函数而不为每个函数重新创建别名。 像这样: impor
我应该使用 from foo import bar 或 import foo.bar as bar 当导入模块并且不需要/希望更改名称(bar)? 有什么不同吗?有关系吗? 最佳答案 假设bar是fo
这个问题在这里已经有了答案: Use 'import module' or 'from module import'? (23 个回答) 关闭8年前。 我想知道代码片段之间是否有任何区别 from u
我试过了 from urllib import request mine = request.Request() 和 import urllib.request mine = urllib.reque
所以,我有一个关于 Python 导入的小谜团。我确信出于某种原因事情应该是这样的,因为 Guido 很少出错。但是,为什么会这样呢? $ cat myModule.py #!/usr/bin/pyt
我们正在将 Rails 3.2 应用程序升级到 Rails 4.0。 我们有一个 assets/stylesheets/application/index.css.sass加载一些其他 sass 文件
我正在开发一个相当小的 Typescript 代码库,该代码库已经足够大,可以拆分到多个文件中。这是一个二十一点游戏。我目前有一堆代码,看起来像: var player = new Player();
是否可以以当模块为 use 时的方式编写模块? d 没有显式导入所有子例程都被导入,当它是 use d 显式导入只有这些显式导入的子程序可用? #!/usr/bin/env perl6 use v6;
这个问题在这里已经有了答案: how to watch changes in whole directory/folder containing many sass files (9 个回答) 5年前
我真的很难让它在 xcode 4 中工作。 我有一个项目将在许多应用程序(网络)中重用,因此我创建一个工作区并添加我的两个项目。到目前为止,一切都很好....这就是失败的地方.. #import "J
经典提取器和新提取器之间的主要区别是什么,哪个最好用? 最佳答案 经典提取器使用原始工作流程,与爬虫和连接器相同。 新的提取器更加精简,通常看起来和感觉都更好,并且经典提取器中的许多小错误已在新提取器
在处理 google webfont import mixin 时,我注意到无法动态构建 @import URL。 .gFontImport (@name, @weights, @subsets) {
我正在关注Django 1.8 tutorial 。在我的项目中mysite ,有一个源文件夹polls 。文件夹中有views.py模块其中 index函数已定义。还有一个urls.py文件: fr
我想使用名为 warp 的第三方库编译一个简单的 Rust 程序: [package] name = "hello-world-warp" version = "0.1.0" [dependencie
我是一名优秀的程序员,十分优秀!