File tree Expand file tree Collapse file tree 8 files changed +24
-477
lines changed Expand file tree Collapse file tree 8 files changed +24
-477
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ mdbutton {
7
7
elevation : 0 ;
8
8
font-size : 40 ;
9
9
border-radius : 32 ;
10
+ ripple-color : red ;
10
11
width : 64 ;
11
12
height : 64 ;
12
13
padding : 0 ;
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ import { NativeScriptConfig } from '@nativescript/core' ;
2
+
3
+ export default {
4
+ id : 'org.nativescript.demo' ,
5
+ appResourcesPath : 'app/App_Resources' ,
6
+ android : {
7
+ v8Flags : '--expose_gc' ,
8
+ markingMode : 'none'
9
+ } ,
10
+ appPath : 'app'
11
+ } as NativeScriptConfig ;
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
{
2
- "nativescript" : {
3
- "id" : " org.nativescript.demo" ,
4
- "tns-android" : {
5
- "version" : " 6.3.0"
6
- },
7
- "tns-ios" : {
8
- "version" : " 6.2.0"
9
- }
10
- },
11
2
"dependencies" : {
12
3
"@nativescript/core" : " rc" ,
13
4
"@nativescript-community/ui-material-activityindicator" : " file:../packages/activityindicator" ,
24
15
"@nativescript-community/ui-material-snackbar" : " file:../packages/snackbar" ,
25
16
"@nativescript-community/ui-material-textfield" : " file:../packages/textfield" ,
26
17
"@nativescript-community/ui-material-textview" : " file:../packages/textview" ,
27
- "@nativescript/theme" : " rc " ,
18
+ "@nativescript/theme" : " 3.0.0 " ,
28
19
"nativescript-ui-listview" : " 7.1.0"
29
20
},
30
21
"devDependencies" : {
41
32
"node-sass" : " ^4.13.0" ,
42
33
"resolve-url-loader" : " ~3.1.0" ,
43
34
"sass-loader" : " ^8.0.0" ,
44
- "@nativescript/types" : " rc " ,
35
+ "@nativescript/types" : " 7.0.0 " ,
45
36
"ts-loader" : " ^6.2.1" ,
46
37
"tslint" : " ~5.20.0" ,
47
- "typescript" : " 3.6.4 " ,
38
+ "typescript" : " 3.9.7 " ,
48
39
"webpack" : " ~4.41.2" ,
49
40
"webpack-bundle-analyzer" : " ^3.6.0" ,
50
41
"webpack-sources" : " ~1.4.3"
51
42
},
52
43
"scripts" : {
53
44
"build.plugin" : " cd ./ && npm run build.plugin" ,
54
45
"ci.tslint" : " npm i && tslint --config '../tslint.json' 'app/**/*.ts' --exclude '**/node_modules/**'"
55
- }
46
+ },
47
+ "main" : " app.js"
56
48
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"extends" : " ../tsconfig" ,
3
3
"compilerOptions" : {
4
- "target" : " es5 " ,
5
- "module" : " commonjs " ,
4
+ "target" : " es2017 " ,
5
+ "module" : " esnext " ,
6
6
"declaration" : false ,
7
- "removeComments" : true ,
7
+ "removeComments" : false ,
8
8
"noLib" : false ,
9
9
"emitDecoratorMetadata" : true ,
10
10
"experimentalDecorators" : true ,
11
11
"lib" : [
12
12
" es6" ,
13
- " dom"
13
+ " dom" ,
14
+ " es2017"
14
15
],
15
16
"pretty" : true ,
16
17
"allowUnreachableCode" : false ,
29
30
"~/*" : [
30
31
" app/*"
31
32
]
32
- }
33
+ },
34
+ "moduleResolution" : " node"
33
35
},
34
36
"exclude" : [
35
37
" node_modules" ,
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments