We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c334d3b commit fe1db33Copy full SHA for fe1db33
.gitignore
@@ -33,4 +33,7 @@ node_modules
33
34
.vscode
35
36
-*.js
+*.js
37
+*.d.ts
38
+
39
+typings/
TodoListComponent.ts
@@ -1,3 +1,6 @@
1
+declare var $: any;
2
3
4
class TodoListComponent {
5
6
private $el: jQuery;
tsconfig.json
@@ -1,5 +1,6 @@
{
"compilerOptions": {
- "target": "es5"
+ "target": "es5",
+ "declaration": true
}
0 commit comments