这是我的项目目录
|_server
|
|_client
|
|_typings
typings
文件夹包含客户端和服务器的共享类型。例如:
// typings/shared.d.ts
declare module '@typings/shared' {
export const hello: string
}
要从中导入输入内容,我可以执行以下操作
// server/src/file.ts
import { hello } from '@typings/shared`
但是,Webpack尝试解决该问题,因此出现此错误:
TS2307: Cannot find module '@typings/shared'
有没有办法告诉Webpack不要去解决@typings/shared
?它们只是类型定义,并不需要Webpack真正体现
预先感谢