一、添加 jest 到 package.jsonjson
jest
package.json
yarn add jest -D
二、安裝 @types/jestui
@types/jest
yarn add @types/jest
三、在根目錄添加/編輯 jsconfig.jsoncode
jsconfig.json
{ "typeAcquisition": { "include": [ "jest" ] } }