├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── LICENSE ├── README.md ├── images ├── icon.png └── snippets.png ├── package.json ├── snippets └── javascript.json ├── src └── extension.ts ├── test ├── extension.test.ts └── index.ts ├── tsconfig.json ├── typings ├── node.d.ts └── vscode-typings.d.ts └── vsc-extension-quickstart.md /.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | node_modules -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonJayamanne/jquerysnippets/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonJayamanne/jquerysnippets/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonJayamanne/jquerysnippets/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonJayamanne/jquerysnippets/HEAD/.vscodeignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonJayamanne/jquerysnippets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonJayamanne/jquerysnippets/HEAD/README.md -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonJayamanne/jquerysnippets/HEAD/images/icon.png -------------------------------------------------------------------------------- /images/snippets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonJayamanne/jquerysnippets/HEAD/images/snippets.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonJayamanne/jquerysnippets/HEAD/package.json -------------------------------------------------------------------------------- /snippets/javascript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonJayamanne/jquerysnippets/HEAD/snippets/javascript.json -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonJayamanne/jquerysnippets/HEAD/src/extension.ts -------------------------------------------------------------------------------- /test/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonJayamanne/jquerysnippets/HEAD/test/extension.test.ts -------------------------------------------------------------------------------- /test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonJayamanne/jquerysnippets/HEAD/test/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonJayamanne/jquerysnippets/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings/node.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonJayamanne/jquerysnippets/HEAD/typings/node.d.ts -------------------------------------------------------------------------------- /typings/vscode-typings.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonJayamanne/jquerysnippets/HEAD/vsc-extension-quickstart.md --------------------------------------------------------------------------------