随笔分类 - typeScript
摘要:在.eslintrc.js中添加rules配置 // .eslintrc.js "rules": { "@typescript-eslint/ban-types": [ "error", { "extendDefaults": true, "types": { "{}": false } } ] }
阅读全文
摘要:1、查看本机TypeScript版本,可以使用npm view typescript version 2、查看TypeScript所有可以使用的版本,npm view typescript versions 3、如果想要查看typescript不同环境下的版本,可以使用npm info typesc
阅读全文
摘要:const toString = Object.prototype.toString; export function is(val: unknown, type: string) { return toString.call(val) `[object ${type}]`; } export fu
阅读全文

浙公网安备 33010602011771号