Files
start-os/frontend/tsconfig.json
Alex Inkin a5c97d4c24 feat: migrate to Angular 14 and RxJS 7 (#1681)
* feat: migrate to Angular 14 and RxJS 7

* chore: update ng-qrcode

* chore: update patch-db

* chore: remove unnecessary generics
2022-07-27 21:31:46 -06:00

40 lines
1.2 KiB
JSON

/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"forceConsistentCasingInFileNames": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true,
"strict": true,
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"importHelpers": true,
"target": "es2020",
"module": "es2020",
"lib": ["es2020", "dom"],
"paths": {
"stream": ["./node_modules/stream-browserify"],
"crypto": ["./node_modules/crypto-browserify"],
"vm": ["./node_modules/vm-browserify"],
/* These paths are relative to each app base folder */
"@start9labs/marketplace": ["../marketplace/src/public-api"],
"@start9labs/shared": ["../shared/src/public-api"]
},
"typeRoots": ["node_modules/@types"],
"types": ["node"]
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
}
}