Installing ng-matero

This commit is contained in:
2023-01-09 16:39:23 +01:00
parent 2425ecbd3b
commit 399b52a272
209 changed files with 15574 additions and 174 deletions

View File

@@ -1,28 +1,36 @@
/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"baseUrl": "src",
"downlevelIteration": true,
"outDir": "./dist/out-tsc",
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"module": "es2020",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "ES2022",
"module": "ES2022",
"useDefineForClassFields": false,
"lib": [
"ES2022",
"dom"
]
"typeRoots": ["node_modules/@types"],
"lib": ["es2019", "dom"],
"paths": {
"@core": ["app/core"],
"@core/*": ["app/core/*"],
"@shared": ["app/shared"],
"@shared/*": ["app/shared/*"],
"@theme": ["app/theme"],
"@theme/*": ["app/theme/*"],
"@testing": ["testing"],
"@testing/*": ["testing/*"],
"@env": ["environments"],
"@env/*": ["environments/*"]
},
"useDefineForClassFields": false
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,