Đối với VS Code 1.21.1, bạn cần chỉnh sửa
/usr/share/code/resources/app/extensions/typescript-basics/snippets/typescript.json
Trong Windows
/ Applications / Visual Studio Code.app/Contents/Resources/app/extensions/typescript-basics/snippets/typescript.json .
Trong Windows 10 (vscode phiên bản 1.30. * (Người dùng thiết lập) sau này)
* C: \ Users \ <yourusername> \ AppData \ Local \ Programs \ Microsoft VS Code \ resources \ app \ extensions \ stylescript-basics \ snippets \ stylescript.json
Trong phần 'Nhập mô-đun bên ngoài' của tệp đó, hãy đặt thuộc tính mảng nội dung thành giá trị "import { $0 } from '${1:module}';"
. Phần sau đó sẽ giống như sau:
"Import external module.": {
"prefix": "import statement",
"body": [
"import { $0 } from '${1:module}';"
],
"description": "Import external module."
},