├── .gitignore ├── .vscodeignore ├── LICENSE ├── README.md ├── images └── react.png ├── package.json ├── snippets └── snippets.json └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- 1 | .gitignore 2 | LICENSE -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infeng/vscode-react-typescript/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infeng/vscode-react-typescript/HEAD/README.md -------------------------------------------------------------------------------- /images/react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infeng/vscode-react-typescript/HEAD/images/react.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infeng/vscode-react-typescript/HEAD/package.json -------------------------------------------------------------------------------- /snippets/snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infeng/vscode-react-typescript/HEAD/snippets/snippets.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infeng/vscode-react-typescript/HEAD/tsconfig.json --------------------------------------------------------------------------------