我有一些静态数据,我试图创建一个查找表,所以我有一个对象在TS文件:
newTSFile.ts
export declare module FontList {
export DEFAULT_DATA: {
'james': {
'age': '23'
},
'jack': {
'age': '22'
}
}
}
然后在我的主TS文件中,我导入为
import { FontList } from './newTSFile';
//
console.log("font list: ", FontList)
但是,当编译错误:Error [ERR_MODULE_NOT_FOUND]: Cannot find module .../FontList
时,它仍然找不到文件。不确定我在导入
方面做错了什么试试这个:-
newTSFile.ts
export const FontList: {
'james': {
'age': '23'
},
'jack': {
'age': '22'
}
}
主TS文件
import { FontList } from './newTSFile';