)
我有一个这样的 tsconfig
{
"compileOnSave": false,
"compilerOptions": {
"module": "es2015",
"target": "es2015",
"sourceMap": true,
"jsx": "react",
"allowSyntheticDefaultImports": true,
"noImplicitAny": false,
"watch": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowJs": true,
"suppressOutputPathCheck": true
},
"exclude": [
"dist",
"node_modules",
"bower_components",
"typings/globals",
"typings/modules"
]
}
我正在使用 webpack 来捆绑我的项目文件。大多数定义文件都是使用类型添加的,但某些 npm 模块包含自己的定义文件。我希望能够将它们添加到打字稿编译中。否则我会收到类似Cannot find module X
的错误
如何在编译中包含这些定义文件?
某些 npm 模块包含自己的定义文件
如果您将module
设置为commonjs
🌹,这些将被拾取(尽管有exclude