Skip to content

Commit

Permalink
fix(ref: no-ref): fix issues
Browse files Browse the repository at this point in the history
  • Loading branch information
andriikamaldinov1 committed Nov 8, 2024
1 parent 9a637aa commit 0d93d1f
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@
"importHelpers": true,
"outDir": "./dist/out-tsc",
"sourceMap": true,
"esModuleInterop": true,
"declaration": false,
"module": "esnext",
"module": "ES2022",
"experimentalDecorators": true,
"strict": true,
"target": "ES2022",
"lib": ["es2020", "dom"],
"lib": ["ES2022", "dom"],
"paths": {
"ngx-mask": ["projects/ngx-mask-lib/src"],
"ngx-mask/*": ["projects/ngx-mask-lib/src"],
Expand All @@ -25,11 +26,17 @@
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"useUnknownInCatchVariables": true,
"exactOptionalPropertyTypes": true,
"removeComments": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"useDefineForClassFields": false,
"skipLibCheck": true,
"noImplicitAny": true
"noImplicitAny": true,
"useDefineForClassFields": true,
"isolatedModules": true
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
Expand Down

0 comments on commit 0d93d1f

Please sign in to comment.