@nativescript/template-blank-ts 9.0.0 → 9.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/App_Resources/iOS/Info.plist +2 -2
- package/package.json +3 -3
- package/tsconfig.json +3 -3
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
<key>CFBundlePackageType</key>
|
|
16
16
|
<string>APPL</string>
|
|
17
17
|
<key>CFBundleShortVersionString</key>
|
|
18
|
-
<string>1.0</string>
|
|
18
|
+
<string>1.0.0</string>
|
|
19
19
|
<key>CFBundleSignature</key>
|
|
20
20
|
<string>????</string>
|
|
21
21
|
<key>CFBundleVersion</key>
|
|
22
|
-
<string>1.0</string>
|
|
22
|
+
<string>1.0.0</string>
|
|
23
23
|
<key>LSRequiresIPhoneOS</key>
|
|
24
24
|
<true/>
|
|
25
25
|
<key>UILaunchStoryboardName</key>
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"main": "app/app.ts",
|
|
4
4
|
"displayName": "Blank",
|
|
5
5
|
"templateType": "App template",
|
|
6
|
-
"version": "9.
|
|
6
|
+
"version": "9.1.0",
|
|
7
7
|
"description": "Blank template for Vanilla NativeScript apps using TypeScript",
|
|
8
8
|
"author": "NativeScript Team <oss@nativescript.org>",
|
|
9
9
|
"license": "Apache-2.0",
|
|
@@ -38,12 +38,12 @@
|
|
|
38
38
|
"url": "https://github.com/NativeScript/NativeScript/issues"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@nativescript/core": "~9.
|
|
41
|
+
"@nativescript/core": "~9.1.0",
|
|
42
42
|
"@nativescript/theme": "^3.1.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@nativescript/types": "~9.0.0",
|
|
46
46
|
"@nativescript/webpack": "~5.0.25",
|
|
47
|
-
"typescript": "~
|
|
47
|
+
"typescript": "~6.0.0"
|
|
48
48
|
}
|
|
49
49
|
}
|
package/tsconfig.json
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compilerOptions": {
|
|
3
|
+
"strict": false,
|
|
3
4
|
"module": "esnext",
|
|
4
5
|
"target": "ES2020",
|
|
5
6
|
"moduleResolution": "bundler",
|
|
@@ -9,10 +10,9 @@
|
|
|
9
10
|
"noEmitOnError": true,
|
|
10
11
|
"skipLibCheck": true,
|
|
11
12
|
"lib": ["ESNext", "dom"],
|
|
12
|
-
"baseUrl": ".",
|
|
13
13
|
"paths": {
|
|
14
|
-
"~/*": ["app/*"],
|
|
15
|
-
"@/*": ["app/*"]
|
|
14
|
+
"~/*": ["./app/*"],
|
|
15
|
+
"@/*": ["./app/*"]
|
|
16
16
|
}
|
|
17
17
|
},
|
|
18
18
|
"include": ["app/**/*"],
|