├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── .vscodeignore ├── README.md ├── api.txt ├── config.txt ├── content.html ├── icon.png ├── index.html ├── jsconfig.json ├── package.json ├── port ├── screenshots ├── fileassociation.png ├── intellisense.png ├── preview.png └── snippets.png ├── snippets ├── config.json └── wechat.json ├── src ├── codeSnippet.ts ├── extension.ts ├── fileAssociation.ts ├── jsconfiguration.ts ├── libs │ └── port.ts ├── typeDefinition.ts └── wechatApp.ts ├── test ├── extension.test.ts └── index.ts ├── tsconfig.json └── wx.d.ts /.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | node_modules 3 | content.html 4 | port 5 | .vscode -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellopao/vscode-wechat/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellopao/vscode-wechat/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellopao/vscode-wechat/HEAD/.vscodeignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellopao/vscode-wechat/HEAD/README.md -------------------------------------------------------------------------------- /api.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellopao/vscode-wechat/HEAD/api.txt -------------------------------------------------------------------------------- /config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellopao/vscode-wechat/HEAD/config.txt -------------------------------------------------------------------------------- /content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellopao/vscode-wechat/HEAD/content.html -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellopao/vscode-wechat/HEAD/icon.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellopao/vscode-wechat/HEAD/index.html -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellopao/vscode-wechat/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellopao/vscode-wechat/HEAD/package.json -------------------------------------------------------------------------------- /port: -------------------------------------------------------------------------------- 1 | 30000 -------------------------------------------------------------------------------- /screenshots/fileassociation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellopao/vscode-wechat/HEAD/screenshots/fileassociation.png -------------------------------------------------------------------------------- /screenshots/intellisense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellopao/vscode-wechat/HEAD/screenshots/intellisense.png -------------------------------------------------------------------------------- /screenshots/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellopao/vscode-wechat/HEAD/screenshots/preview.png -------------------------------------------------------------------------------- /screenshots/snippets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellopao/vscode-wechat/HEAD/screenshots/snippets.png -------------------------------------------------------------------------------- /snippets/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellopao/vscode-wechat/HEAD/snippets/config.json -------------------------------------------------------------------------------- /snippets/wechat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellopao/vscode-wechat/HEAD/snippets/wechat.json -------------------------------------------------------------------------------- /src/codeSnippet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellopao/vscode-wechat/HEAD/src/codeSnippet.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellopao/vscode-wechat/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/fileAssociation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellopao/vscode-wechat/HEAD/src/fileAssociation.ts -------------------------------------------------------------------------------- /src/jsconfiguration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellopao/vscode-wechat/HEAD/src/jsconfiguration.ts -------------------------------------------------------------------------------- /src/libs/port.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellopao/vscode-wechat/HEAD/src/libs/port.ts -------------------------------------------------------------------------------- /src/typeDefinition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellopao/vscode-wechat/HEAD/src/typeDefinition.ts -------------------------------------------------------------------------------- /src/wechatApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellopao/vscode-wechat/HEAD/src/wechatApp.ts -------------------------------------------------------------------------------- /test/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellopao/vscode-wechat/HEAD/test/extension.test.ts -------------------------------------------------------------------------------- /test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellopao/vscode-wechat/HEAD/test/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellopao/vscode-wechat/HEAD/tsconfig.json -------------------------------------------------------------------------------- /wx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellopao/vscode-wechat/HEAD/wx.d.ts --------------------------------------------------------------------------------