File tree Expand file tree Collapse file tree 4 files changed +54
-2
lines changed Expand file tree Collapse file tree 4 files changed +54
-2
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ bower_components/
31
31
32
32
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
33
33
.grunt
34
+ dist /src
34
35
35
36
# Grunt temporary storage
36
37
temp /
Original file line number Diff line number Diff line change
1
+ # OS or Editor folders
2
+ ._ *
3
+ .cache
4
+ .DS_Store
5
+ .idea
6
+ .vs
7
+ .vscode
8
+ .project
9
+ .projectile
10
+ .settings
11
+ .tmproj
12
+ * .esproj
13
+ * .sublime-project
14
+ * .sublime-workspace
15
+ nbproject
16
+ Thumbs.db
17
+
18
+ # Node logs
19
+ logs
20
+ * .log
21
+ npm-debug.log *
22
+ yarn-debug.log *
23
+ yarn-error.log *
24
+
25
+ # grunt-contrib-sass cache
26
+ .sass-cache /
27
+
28
+ # Dependency directories
29
+ node_modules /
30
+ bower_components /
31
+
32
+ # Grunt temporary storage
33
+ temp /
34
+
35
+ # Jasmine SpecRunner
36
+ _SpecRunner.html
37
+
38
+ # Ignore compiled files
39
+ css /ghpages-materialize.css
40
+ bin /
41
+
42
+ # Ignore lock
43
+ yarn.lock
44
+
45
+ # Compiled docs
46
+ /docs /* .html
47
+ ! /docs /fab-toolbar-demo.html
Original file line number Diff line number Diff line change 7
7
"main" : " dist/js/materialize.js" ,
8
8
"style" : " dist/css/materialize.css" ,
9
9
"sass" : " sass/materialize.scss" ,
10
+ "typings" : " dist/src/global.d.ts" ,
10
11
"license" : " MIT" ,
11
12
"repository" : {
12
13
"type" : " git" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"compilerOptions" : {
3
- // "outDir": "./bin/ ",
3
+ "outDir" : " ./dist " ,
4
4
"emitDecoratorMetadata" : true ,
5
5
"experimentalDecorators" : true ,
6
6
"module" : " CommonJS" ,
9
9
"target" : " ES6" ,
10
10
"esModuleInterop" : true ,
11
11
"resolveJsonModule" : true ,
12
- "sourceMap" : true
12
+ "sourceMap" : true ,
13
+ "composite" : true ,
14
+ "declaration" : true ,
15
+ "declarationMap" : true ,
13
16
},
14
17
"include" : [
15
18
" test" ,
You can’t perform that action at this time.
0 commit comments