-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathplugin.template.xml
38 lines (27 loc) · 1.37 KB
/
plugin.template.xml
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
<idea-plugin>
<id>com.lukasbach.intellij.snippets.typescriptreact</id>
<name>Live Templates for TypeScript and React</name>
<!-- The <version> of this plugin is set by patchPluginXml.version in build.gradle -->
<vendor email="[email protected]" url="https://lukasbach.com">Lukas Bach</vendor>
<description><![CDATA[
<p>Live templates for TypeScript and React, including React hooks!</p>
<p>Currently supported:</p>
%DOCS%
<p></p>
<p>Checkout <a href="https://github.com/lukasbach/intellij-ts-react-livetemplates">github.com/lukasbach/intellij-ts-react-livetemplates</a>
for details on available snippets.</p>
<p>If the library benefits, you can consider supporting it by <a href="https://github.com/sponsors/lukasbach">sponsoring me</a>.</p>
]]></description>
<!-- please see https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html for description -->
<idea-version since-build="173.0"/>
<!-- please see https://plugins.jetbrains.com/docs/intellij/plugin-compatibility.html
on how to target different products -->
<depends>com.intellij.modules.platform</depends>
<depends>com.intellij.modules.lang</depends>
<extensions defaultExtensionNs="com.intellij">
<defaultLiveTemplates file="/templates/TypedReact.xml"/>
</extensions>
<actions>
<!-- Add your actions here -->
</actions>
</idea-plugin>