Skip to content

Commit 6742585

Browse files
committed
fix(demo): minor
1 parent c2730e7 commit 6742585

File tree

7 files changed

+37
-42
lines changed

7 files changed

+37
-42
lines changed

angular.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"./node_modules/prismjs/themes/prism-okaidia.css"
3333
],
3434
"scripts": [
35-
"./node_modules/marked/lib/marked.js",
35+
"./node_modules/marked/marked.min.js",
3636
"./node_modules/prismjs/prism.js",
3737
"./node_modules/prismjs/components/prism-typescript.min.js",
3838
"./node_modules/prismjs/components/prism-css.min.js"

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"express": "^4.18.1",
5353
"ngx-clipboard": "^15.1.0",
5454
"ngx-highlightjs": "^7.0.0",
55-
"ngx-markdown": "^14.0.0",
55+
"ngx-markdown": "^14.0.1",
5656
"rxjs": "^7.5.5",
5757
"tslib": "^2.3.1",
5858
"zone.js": "~0.11.4"

projects/angular-material-extensions/password-strength/tsconfig.lib.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
/* To learn more about this file see: https://angular.io/config/tsconfig. */
21
{
3-
"extends": "../../../tsconfig.json",
2+
"extends": "../../../tsconfig.base.json",
43
"compilerOptions": {
5-
"outDir": "../../out-tsc/lib",
6-
"declarationMap": true,
7-
"target": "es2020",
4+
"outDir": "../../../out-tsc/lib",
5+
"target": "es2015",
86
"declaration": true,
97
"inlineSources": true,
108
"types": [],
Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
1-
/* To learn more about this file see: https://angular.io/config/tsconfig. */
21
{
32
"extends": "./tsconfig.lib.json",
4-
"compilerOptions": {
5-
"declarationMap": false
6-
},
73
"angularCompilerOptions": {
8-
"compilationMode": "partial"
4+
"enableIvy": false
95
}
106
}

src/app/app-routing.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const routes: Routes = [
1717

1818
@NgModule({
1919
imports: [RouterModule.forRoot(routes, {
20-
initialNavigation: 'enabled',
20+
initialNavigation: 'enabledNonBlocking',
2121
relativeLinkResolution: 'legacy'
2222
})],
2323
exports: [RouterModule]

tsconfig.json

Lines changed: 23 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,26 @@
1+
/*
2+
This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience.
3+
It is not intended to be used to perform a compilation.
4+
5+
To learn more about this file see: https://angular.io/config/solution-tsconfig.
6+
*/
17
{
2-
"compileOnSave": false,
3-
"compilerOptions": {
4-
"baseUrl": "./",
5-
"outDir": "./dist/out-tsc",
6-
"sourceMap": true,
7-
"declaration": false,
8-
"downlevelIteration": true,
9-
"experimentalDecorators": true,
10-
"moduleResolution": "node",
11-
"importHelpers": true,
12-
"target": "es2020",
13-
"module": "es2020",
14-
"lib": [
15-
"es2018",
16-
"dom"
17-
],
18-
"paths": {
19-
"@angular-material-extensions/password-strength": [
20-
"dist/angular-material-extensions/password-strength/angular-material-extensions-password-strength",
21-
"dist/angular-material-extensions/password-strength"
22-
]
8+
"files": [],
9+
"references": [
10+
{
11+
"path": "./tsconfig.app.json"
12+
},
13+
{
14+
"path": "./tsconfig.spec.json"
15+
},
16+
{
17+
"path": "./tsconfig.server.json"
18+
},
19+
{
20+
"path": "./projects/angular-material-extensions/password-strength/tsconfig.lib.json"
21+
},
22+
{
23+
"path": "./projects/angular-material-extensions/password-strength/tsconfig.spec.json"
2324
}
24-
}
25+
]
2526
}

0 commit comments

Comments
 (0)