Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
470 changes: 103 additions & 367 deletions package-lock.json

Large diffs are not rendered by default.

20 changes: 13 additions & 7 deletions packages/quickstart/steps/01/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,20 +175,26 @@ We specify the compiler options as follow:
```json
{
"compilerOptions": {
"target": "es2023",
"module": "es2022",
"moduleResolution": "node",
"target": "es2025",
"types": [
"node",
"@types/openui5"
],
"skipLibCheck": true,
"allowJs": true,
"strict": true,
"strictNullChecks": false,
"strictPropertyInitialization": false,
"rootDir": "webapp",
"baseUrl": "./",
"rootDir": "./webapp",
"paths": {
"ui5/quickstart/*": ["webapp/*"]
"ui5/quickstart/*": [
"./webapp/*"
]
}
},
"include": ["webapp/**/*"]
"include": [
"./webapp/**/*"
]
}
```

Expand Down
2 changes: 1 addition & 1 deletion packages/quickstart/steps/01/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"devDependencies": {
"@types/openui5": "^1.147.0",
"@ui5/cli": "^4.0.52",
"typescript": "^5.9.3",
"typescript": "^6.0.3",
"ui5-middleware-livereload": "^3.3.0",
"ui5-middleware-serveframework": "^3.8.0",
"ui5-tooling-transpile": "^3.11.0"
Expand Down
16 changes: 9 additions & 7 deletions packages/quickstart/steps/01/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,23 @@
{
"compilerOptions": {
"target": "es2023",
"module": "es2022",
"moduleResolution": "node",
"target": "es2025",
"types": [
"node",
"@types/openui5"
],
"skipLibCheck": true,
"allowJs": true,
"strict": true,
"strictNullChecks": false,
"strictPropertyInitialization": false,
"rootDir": "webapp",
"baseUrl": "./",
"rootDir": "./webapp",
"paths": {
"ui5/quickstart/*": [
"webapp/*"
"./webapp/*"
]
}
},
"include": [
"webapp/**/*"
"./webapp/**/*"
]
}
2 changes: 1 addition & 1 deletion packages/quickstart/steps/02/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"devDependencies": {
"@types/openui5": "^1.147.0",
"@ui5/cli": "^4.0.52",
"typescript": "^5.9.3",
"typescript": "^6.0.3",
"ui5-middleware-livereload": "^3.3.0",
"ui5-middleware-serveframework": "^3.8.0",
"ui5-tooling-transpile": "^3.11.0"
Expand Down
36 changes: 21 additions & 15 deletions packages/quickstart/steps/02/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,23 @@
{
"compilerOptions": {
"target": "es2023",
"module": "es2022",
"moduleResolution": "node",
"skipLibCheck": true,
"allowJs": true,
"strict": true,
"strictPropertyInitialization": false,
"rootDir": "webapp",
"baseUrl": "./",
"paths": {
"ui5/quickstart/*": ["webapp/*"]
}
},
"include": ["webapp/**/*"]
"compilerOptions": {
"target": "es2025",
"types": [
"node",
"@types/openui5"
],
"skipLibCheck": true,
"allowJs": true,
"strict": true,
"strictNullChecks": false,
"strictPropertyInitialization": false,
"rootDir": "./webapp",
"paths": {
"ui5/quickstart/*": [
"./webapp/*"
]
}
},
"include": [
"./webapp/**/*"
]
}
2 changes: 1 addition & 1 deletion packages/quickstart/steps/03/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"devDependencies": {
"@types/openui5": "^1.147.0",
"@ui5/cli": "^4.0.52",
"typescript": "^5.9.3",
"typescript": "^6.0.3",
"ui5-middleware-livereload": "^3.3.0",
"ui5-middleware-serveframework": "^3.8.0",
"ui5-tooling-transpile": "^3.11.0"
Expand Down
36 changes: 21 additions & 15 deletions packages/quickstart/steps/03/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,23 @@
{
"compilerOptions": {
"target": "es2023",
"module": "es2022",
"moduleResolution": "node",
"skipLibCheck": true,
"allowJs": true,
"strict": true,
"strictPropertyInitialization": false,
"rootDir": "webapp",
"baseUrl": "./",
"paths": {
"ui5/quickstart/*": ["webapp/*"]
}
},
"include": ["webapp/**/*"]
"compilerOptions": {
"target": "es2025",
"types": [
"node",
"@types/openui5"
],
"skipLibCheck": true,
"allowJs": true,
"strict": true,
"strictNullChecks": false,
"strictPropertyInitialization": false,
"rootDir": "./webapp",
"paths": {
"ui5/quickstart/*": [
"./webapp/*"
]
}
},
"include": [
"./webapp/**/*"
]
}
14 changes: 6 additions & 8 deletions packages/walkthrough/steps/02/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,20 +74,18 @@ We specify the compiler options as follow:
```json
{
"compilerOptions": {
"target": "es2023",
"module": "es2022",
"moduleResolution": "node",
"target": "es2025",
"types": ["node", "@types/openui5"],
"skipLibCheck": true,
"allowJs": true,
"strict": true,
"strictPropertyInitialization": false,
"rootDir": "webapp",
"baseUrl": "./",
"rootDir": "./webapp",
"paths": {
"ui5/walkthrough/*": ["webapp/*"]
"ui5/walkthrough/*": ["./webapp/*"]
}
},
"include": ["webapp/**/*"]
"include": ["./webapp/**/*"]
}
```

Expand All @@ -111,7 +109,7 @@ Let's go through the compiler options specified in the file:

- `"baseUrl": "./"`: The `baseUrl` parameter is used to resolve non-relative module names. We specified that non-relative module names are resolved relative to the location of the `tsconfig.json` file.

- `"paths": { "ui5/walkthrough/*": ["webapp/*"] }`: The `path` paramter specifies path mappings for module resolution. It allows you to define custom module paths that map to specific directories or files. In this case, it maps the module path `ui5/walkthrough/*`
- `"paths": { "ui5/walkthrough/*": ["./webapp/*"] }`: The `path` paramter specifies path mappings for module resolution. It allows you to define custom module paths that map to specific directories or files. In this case, it maps the module path `ui5/walkthrough/*`

***

Expand Down
2 changes: 1 addition & 1 deletion packages/walkthrough/steps/02/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"devDependencies": {
"@ui5/cli": "^4.0.52",
"typescript": "^5.9.3",
"typescript": "^6.0.3",
"ui5-middleware-livereload": "^3.3.0",
"ui5-middleware-serveframework": "^3.8.0",
"ui5-tooling-transpile": "^3.11.0"
Expand Down
12 changes: 5 additions & 7 deletions packages/walkthrough/steps/02/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
{
"compilerOptions": {
"target": "es2023",
"module": "es2022",
"moduleResolution": "node",
"target": "es2025",
"types": ["node", "@types/openui5"],
"skipLibCheck": true,
"allowJs": true,
"strict": true,
"strictPropertyInitialization": false,
"rootDir": "webapp",
"baseUrl": "./",
"rootDir": "./webapp",
"paths": {
"ui5/walkthrough/*": ["webapp/*"]
"ui5/walkthrough/*": ["./webapp/*"]
}
},
"include": ["webapp/**/*"]
"include": ["./webapp/**/*"]
}
2 changes: 1 addition & 1 deletion packages/walkthrough/steps/03/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"devDependencies": {
"@types/openui5": "^1.147.0",
"@ui5/cli": "^4.0.52",
"typescript": "^5.9.3",
"typescript": "^6.0.3",
"ui5-middleware-livereload": "^3.3.0",
"ui5-middleware-serveframework": "^3.8.0",
"ui5-tooling-transpile": "^3.11.0"
Expand Down
12 changes: 5 additions & 7 deletions packages/walkthrough/steps/03/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
{
"compilerOptions": {
"target": "es2023",
"module": "es2022",
"moduleResolution": "node",
"target": "es2025",
"types": ["node", "@types/openui5"],
"skipLibCheck": true,
"allowJs": true,
"strict": true,
"strictPropertyInitialization": false,
"rootDir": "webapp",
"baseUrl": "./",
"rootDir": "./webapp",
"paths": {
"ui5/walkthrough/*": ["webapp/*"]
"ui5/walkthrough/*": ["./webapp/*"]
}
},
"include": ["webapp/**/*"]
"include": ["./webapp/**/*"]
}
2 changes: 1 addition & 1 deletion packages/walkthrough/steps/04/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"devDependencies": {
"@types/openui5": "^1.147.0",
"@ui5/cli": "^4.0.52",
"typescript": "^5.9.3",
"typescript": "^6.0.3",
"ui5-middleware-livereload": "^3.3.0",
"ui5-middleware-serveframework": "^3.8.0",
"ui5-tooling-transpile": "^3.11.0"
Expand Down
12 changes: 5 additions & 7 deletions packages/walkthrough/steps/04/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
{
"compilerOptions": {
"target": "es2023",
"module": "es2022",
"moduleResolution": "node",
"target": "es2025",
"types": ["node", "@types/openui5"],
"skipLibCheck": true,
"allowJs": true,
"strict": true,
"strictPropertyInitialization": false,
"rootDir": "webapp",
"baseUrl": "./",
"rootDir": "./webapp",
"paths": {
"ui5/walkthrough/*": ["webapp/*"]
"ui5/walkthrough/*": ["./webapp/*"]
}
},
"include": ["webapp/**/*"]
"include": ["./webapp/**/*"]
}
2 changes: 1 addition & 1 deletion packages/walkthrough/steps/05/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"devDependencies": {
"@types/openui5": "^1.147.0",
"@ui5/cli": "^4.0.52",
"typescript": "^5.9.3",
"typescript": "^6.0.3",
"ui5-middleware-livereload": "^3.3.0",
"ui5-middleware-serveframework": "^3.8.0",
"ui5-tooling-transpile": "^3.11.0"
Expand Down
12 changes: 5 additions & 7 deletions packages/walkthrough/steps/05/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
{
"compilerOptions": {
"target": "es2023",
"module": "es2022",
"moduleResolution": "node",
"target": "es2025",
"types": ["node", "@types/openui5"],
"skipLibCheck": true,
"allowJs": true,
"strict": true,
"strictPropertyInitialization": false,
"rootDir": "webapp",
"baseUrl": "./",
"rootDir": "./webapp",
"paths": {
"ui5/walkthrough/*": ["webapp/*"]
"ui5/walkthrough/*": ["./webapp/*"]
}
},
"include": ["webapp/**/*"]
"include": ["./webapp/**/*"]
}
2 changes: 1 addition & 1 deletion packages/walkthrough/steps/06/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"devDependencies": {
"@types/openui5": "^1.147.0",
"@ui5/cli": "^4.0.52",
"typescript": "^5.9.3",
"typescript": "^6.0.3",
"ui5-middleware-livereload": "^3.3.0",
"ui5-middleware-serveframework": "^3.8.0",
"ui5-tooling-transpile": "^3.11.0"
Expand Down
12 changes: 5 additions & 7 deletions packages/walkthrough/steps/06/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
{
"compilerOptions": {
"target": "es2023",
"module": "es2022",
"moduleResolution": "node",
"target": "es2025",
"types": ["node", "@types/openui5"],
"skipLibCheck": true,
"allowJs": true,
"strict": true,
"strictPropertyInitialization": false,
"rootDir": "webapp",
"baseUrl": "./",
"rootDir": "./webapp",
"paths": {
"ui5/walkthrough/*": ["webapp/*"]
"ui5/walkthrough/*": ["./webapp/*"]
}
},
"include": ["webapp/**/*"]
"include": ["./webapp/**/*"]
}
2 changes: 1 addition & 1 deletion packages/walkthrough/steps/07/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"devDependencies": {
"@types/openui5": "^1.147.0",
"@ui5/cli": "^4.0.52",
"typescript": "^5.9.3",
"typescript": "^6.0.3",
"ui5-middleware-livereload": "^3.3.0",
"ui5-middleware-serveframework": "^3.8.0",
"ui5-tooling-transpile": "^3.11.0"
Expand Down
12 changes: 5 additions & 7 deletions packages/walkthrough/steps/07/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
{
"compilerOptions": {
"target": "es2023",
"module": "es2022",
"moduleResolution": "node",
"target": "es2025",
"types": ["node", "@types/openui5"],
"skipLibCheck": true,
"allowJs": true,
"strict": true,
"strictPropertyInitialization": false,
"rootDir": "webapp",
"baseUrl": "./",
"rootDir": "./webapp",
"paths": {
"ui5/walkthrough/*": ["webapp/*"]
"ui5/walkthrough/*": ["./webapp/*"]
}
},
"include": ["webapp/**/*"]
"include": ["./webapp/**/*"]
}
Loading