-
Notifications
You must be signed in to change notification settings - Fork 0
/
test-dependency-list.js
39 lines (38 loc) · 1.45 KB
/
test-dependency-list.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
const snipsnapLibsCollection = [
{
name: 'react',
libSource: ['https://github.com/facebook/react'],
snippetSource: [
'https://raw.githubusercontent.com/dsznajder/vscode-es7-javascript-react-snippets/master/snippets/snippets.json',
],
scope: 'javascript, javascriptreact',
},
{
name: 'typescriptreact',
libSource: 'https://github.com/microsoft/TypeScript',
snippetSource: [
'https://raw.githubusercontent.com/dsznajder/vscode-es7-javascript-react-snippets/master/snippets/ts-snippets.json',
],
scope: 'typescript, typescriptreact',
},
{
name: 'javascript',
libSource: 'https://github.com/tc39/ecma262',
snippetSource: [
'https://raw.githubusercontent.com/dsznajder/vscode-es7-javascript-react-snippets/master/snippets/snippets.json',
],
scope: 'javascript',
},
{
name: 'angular',
libSource: 'https://github.com/angular/angular',
snippetSource: [
'https://raw.githubusercontent.com/johnpapa/vscode-angular-snippets/master/snippets/dockerfile.json',
'https://raw.githubusercontent.com/johnpapa/vscode-angular-snippets/master/snippets/html.json',
'https://raw.githubusercontent.com/johnpapa/vscode-angular-snippets/master/snippets/javascript.json',
'https://raw.githubusercontent.com/johnpapa/vscode-angular-snippets/master/snippets/typescript.json',
],
scope: 'javascript, html, jsonc, dockerfile',
},
];
module.exports = snipsnapLibsCollection;