{
"compilerOptions": {
"target": "esnext", // 指定 ECMAScript 的目标版本
"module": "esnext", // 指定编译生成哪个模块的系统代码,
"outDir": "dist", // 编译输出目录,即 .ts 文件编译成 .js 文件后的输出目录。这里设置为根目录下的 /dist 目录
"strict": true, // 严格模式
"noImplicitAny": false, // 在表达式和声明上有隐含的 any 类型时报错。设为 false 避免当类型推论为 any 时报错
"moduleResolution": "node", // 决定如何处理模块。设置为 node
"baseUrl": "./", // 定义 ts 项目的根目录,设置 paths 前必须设置
//定义路径别名,即当我们通过路径引入一个模块时,可以使用别名来进行引入,这里第一个 * 设置是为了引入第三方模块; 第二个 '@/*' 则是为了直接快捷的导入 /src 下的模块。
"paths": {
"*": ["node_modules/*", "src/types/*"],
"@/*": ["src/*"]
},
"esModuleInterop": true,
"skipLibCheck": true /* Skip type checking all .d.ts files. */,
"sourceMap": true,
"types": ["node"]
}
}
{
"name": "node-test",
"version": "0.0.1",
"description": "",
"license": "MIT",
"author": "xxx",
"type": "module",
"main": "index.js",
"scripts": {
"clean": "tsc --build --clean",
"build": "tsc",
"start": "node --es-module-specifier-resolution=node dist/index.js",
"test": "mocha test/**/*.ts"
},
"dependencies": {},
"devDependencies": {
"@faker-js/faker": "^6.3.1",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.35",
"@types/sinon": "^10.0.11",
"@types/sinon-chai": "^3.2.8",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"chai": "^4.3.6",
"eslint": "^8.14.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-promise": "^6.0.0",
"mocha": "^10.0.0",
"sinon": "^13.0.2",
"sinon-chai": "^3.7.0",
"ts-node": "^10.8.0",
"typescript": "^4.6.4"
}
}
v14.19.1
v14.19.3
本地编译运行都没有问题。代码拷贝到服务器以后,npm run build 出现错误:
Cannot find module 'Buffer' or its corresponding type declarations.
2 import Buffer from "Buffer";
~~~~~~~~
Found 1 error in service/core.ts:2
在网上搜了一天了,查到了类似的问题: https://stackoverflow.com/questions/38875401/getting-error-ts2304-cannot-find-name-buffer
但是最终还是没解决。求大佬帮忙!
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.