> tsc src/test.ts:11:8 - error TS1192: Module '"fs"' has no default export. 11 import fs from 'fs';
时间: 2024-03-16 10:46:36 浏览: 218
warning ..\package.json: No license field
这个错误提示是因为在 TypeScript 中,`fs` 模块没有默认导出,需要使用以下方式导入:
```typescript
import * as fs from 'fs';
```
或者使用命名导入来引入需要的函数或常量:
```typescript
import { readFile, writeFile } from 'fs';
```
这样就可以避免 `Module 'fs' has no default export` 这个错误了。
阅读全文