Skip to content

Commit 28185a4

Browse files
author
phra
committed
add vscode intellisense for angular
1 parent 178d633 commit 28185a4

File tree

4 files changed

+26
-1
lines changed

4 files changed

+26
-1
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
node_modules
22
dist
3-
coverage
3+
coverage
4+
typings/

jsconfig.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=759670
3+
// for the documentation about the jsconfig.json format
4+
"compilerOptions": {
5+
"target": "es6",
6+
"module": "commonjs",
7+
"allowSyntheticDefaultImports": true
8+
},
9+
"exclude": [
10+
"node_modules",
11+
"bower_components",
12+
"jspm_packages",
13+
"tmp",
14+
"temp"
15+
]
16+
}

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
"raw-loader": "^0.5.1",
5252
"rimraf": "^2.5.1",
5353
"style-loader": "^0.13.0",
54+
"typings": "^1.3.1",
5455
"webpack": "^1.12.13",
5556
"webpack-dev-server": "^1.14.1"
5657
}

typings.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"name": "angular-webpack-workflow",
3+
"dependencies": {},
4+
"globalDependencies": {
5+
"atom": "registry:env/atom#1.6.0+20160612063716"
6+
}
7+
}

0 commit comments

Comments
 (0)