无法找到隐式具有 'any' 类型的模块的声明文件 - 在导入 CommonJS 模块的一部分时
Could not find a declaration file for module implicitly has an 'any' type - while importing part of CommonJS module
目前,该项目有一个 CommonJS 模块,用于存储仅在一个文件中维护的配置值:
module.exports = {
classA: `classA`,
classB: `classB`
classC: `classC`
}
这允许稍后通过执行以下操作重用它们来生成 JS 选择器:
const CLASSES = require('./classes')
const SELECTORS = Object.keys(CLASSES).reduce((obj, key) => {
const selectorKey = key.replace(`class`, `selector`)
obj[selectorKey] = `.${CLASSES[key]}`
return obj
}, {})
module.exports = SELECTORS
选择器稍后也用于代码逻辑,并传递给 PostCSS 配置,后者生成要在 .pcss
文件中使用的变量列表。
这非常方便,有助于开发流程,此外,CommonJS 允许在需要时仅向组件导入特定值,例如:
import { classA } from './path/classes
它像梦一样工作,现在仍然如此,但是,在 typescript 文件中以相同的方式导入它不满足 tslint 约束,它会发出错误警告:
Could not find a declaration file for module implicitly has an 'any' type
:
这里是tsconfig.json
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"noImplicitThis": true,
"baseUrl": ".",
"types": [
"webpack-env",
"jest"
],
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
],
"exclude": [
"node_modules"
]
}
所以我想知道是否有一种有效的方法来取悦 TS 大神并以某种方式声明模块类型,或者至少在保留当前功能的同时重写所呈现的逻辑。
P.S: 在和一只鸭子交谈后我得出结论,将它重写到 ts 模块中将防止在 postcss 配置中要求选择器的可能性,因为它不支持 ES6 import
我找到的解决方案是将 "allowJs": true,
选项添加到 tsconfig.js
文件
目前,该项目有一个 CommonJS 模块,用于存储仅在一个文件中维护的配置值:
module.exports = {
classA: `classA`,
classB: `classB`
classC: `classC`
}
这允许稍后通过执行以下操作重用它们来生成 JS 选择器:
const CLASSES = require('./classes')
const SELECTORS = Object.keys(CLASSES).reduce((obj, key) => {
const selectorKey = key.replace(`class`, `selector`)
obj[selectorKey] = `.${CLASSES[key]}`
return obj
}, {})
module.exports = SELECTORS
选择器稍后也用于代码逻辑,并传递给 PostCSS 配置,后者生成要在 .pcss
文件中使用的变量列表。
这非常方便,有助于开发流程,此外,CommonJS 允许在需要时仅向组件导入特定值,例如:
import { classA } from './path/classes
它像梦一样工作,现在仍然如此,但是,在 typescript 文件中以相同的方式导入它不满足 tslint 约束,它会发出错误警告:
Could not find a declaration file for module implicitly has an 'any' type
:
这里是tsconfig.json
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"noImplicitThis": true,
"baseUrl": ".",
"types": [
"webpack-env",
"jest"
],
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
],
"exclude": [
"node_modules"
]
}
所以我想知道是否有一种有效的方法来取悦 TS 大神并以某种方式声明模块类型,或者至少在保留当前功能的同时重写所呈现的逻辑。
P.S: 在和一只鸭子交谈后我得出结论,将它重写到 ts 模块中将防止在 postcss 配置中要求选择器的可能性,因为它不支持 ES6 import
我找到的解决方案是将 "allowJs": true,
选项添加到 tsconfig.js
文件