File tree Expand file tree Collapse file tree 3 files changed +21
-2
lines changed Expand file tree Collapse file tree 3 files changed +21
-2
lines changed Original file line number Diff line number Diff line change 1
1
.DS_Store
2
2
package-lock.json
3
- tsconfig.json
4
3
5
4
# Folders to ignore
6
5
node_modules
Original file line number Diff line number Diff line change 23
23
"zone.js" : " 0.8.20"
24
24
},
25
25
"scripts" : {
26
- "compile" : " node_modules/.bin/ngc -p src/ tsconfig.json" ,
26
+ "compile" : " node_modules/.bin/ngc -p tsconfig.json" ,
27
27
"dist" : " npm run compile && npm run lint && npm run htmlcopy && npm run jsoncopy" ,
28
28
"htmlcopy" : " copyfiles -u 1 src/**/*.html dist" ,
29
29
"jsoncopy" : " copyfiles -u 1 src/package.json dist" ,
Original file line number Diff line number Diff line change
1
+ {
2
+ "compileOnSave" : false ,
3
+ "compilerOptions" : {
4
+ "outDir" : " ./temp/out-tsc" ,
5
+ "sourceMap" : true ,
6
+ "declaration" : true ,
7
+ "moduleResolution" : " node" ,
8
+ "emitDecoratorMetadata" : true ,
9
+ "experimentalDecorators" : true ,
10
+ "target" : " es5" ,
11
+ "module" : " es6" ,
12
+ "typeRoots" : [
13
+ " node_modules/@types"
14
+ ],
15
+ "lib" : [
16
+ " es6" ,
17
+ " dom"
18
+ ]
19
+ }
20
+ }
You can’t perform that action at this time.
0 commit comments