Skip to content

Commit

Permalink
fix(demo): minor
Browse files Browse the repository at this point in the history
  • Loading branch information
AnthonyNahas committed Jul 5, 2022
1 parent c2730e7 commit 6742585
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 42 deletions.
2 changes: 1 addition & 1 deletion angular.json
Expand Up @@ -32,7 +32,7 @@
"./node_modules/prismjs/themes/prism-okaidia.css"
],
"scripts": [
"./node_modules/marked/lib/marked.js",
"./node_modules/marked/marked.min.js",
"./node_modules/prismjs/prism.js",
"./node_modules/prismjs/components/prism-typescript.min.js",
"./node_modules/prismjs/components/prism-css.min.js"
Expand Down
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -52,7 +52,7 @@
"express": "^4.18.1",
"ngx-clipboard": "^15.1.0",
"ngx-highlightjs": "^7.0.0",
"ngx-markdown": "^14.0.0",
"ngx-markdown": "^14.0.1",
"rxjs": "^7.5.5",
"tslib": "^2.3.1",
"zone.js": "~0.11.4"
Expand Down
@@ -1,10 +1,8 @@
/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
"extends": "../../../tsconfig.json",
"extends": "../../../tsconfig.base.json",
"compilerOptions": {
"outDir": "../../out-tsc/lib",
"declarationMap": true,
"target": "es2020",
"outDir": "../../../out-tsc/lib",
"target": "es2015",
"declaration": true,
"inlineSources": true,
"types": [],
Expand Down
@@ -1,10 +1,6 @@
/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
"extends": "./tsconfig.lib.json",
"compilerOptions": {
"declarationMap": false
},
"angularCompilerOptions": {
"compilationMode": "partial"
"enableIvy": false
}
}
2 changes: 1 addition & 1 deletion src/app/app-routing.module.ts
Expand Up @@ -17,7 +17,7 @@ const routes: Routes = [

@NgModule({
imports: [RouterModule.forRoot(routes, {
initialNavigation: 'enabled',
initialNavigation: 'enabledNonBlocking',
relativeLinkResolution: 'legacy'
})],
exports: [RouterModule]
Expand Down
45 changes: 23 additions & 22 deletions tsconfig.json
@@ -1,25 +1,26 @@
/*
This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience.
It is not intended to be used to perform a compilation.
To learn more about this file see: https://angular.io/config/solution-tsconfig.
*/
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"importHelpers": true,
"target": "es2020",
"module": "es2020",
"lib": [
"es2018",
"dom"
],
"paths": {
"@angular-material-extensions/password-strength": [
"dist/angular-material-extensions/password-strength/angular-material-extensions-password-strength",
"dist/angular-material-extensions/password-strength"
]
"files": [],
"references": [
{
"path": "./tsconfig.app.json"
},
{
"path": "./tsconfig.spec.json"
},
{
"path": "./tsconfig.server.json"
},
{
"path": "./projects/angular-material-extensions/password-strength/tsconfig.lib.json"
},
{
"path": "./projects/angular-material-extensions/password-strength/tsconfig.spec.json"
}
}
]
}

0 comments on commit 6742585

Please sign in to comment.