mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
* refactor: isolate network toast and login redirect to separate services * chore: remove accidentally committed sketch of a service * chore: tidying things up * feat: add `GlobalModule` encapsulating all global subscription services * remove angular build cache when building deps * chore: fix more issues found while testing * chore: fix issues reported by testing * chore: fix template error * chore: fix server-info * chore: fix server-info * fix: switch to Observable to fix race conditions * fix embassy name display on load * update patchdb * clean up patch data watch Co-authored-by: Lucy Cifferello <12953208+elvece@users.noreply.github.com>
48 lines
1.5 KiB
JSON
48 lines
1.5 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,
|
|
|
|
"alwaysStrict": true,
|
|
// "strictNullChecks": true,
|
|
"strictBindCallApply": true,
|
|
"strictFunctionTypes": true,
|
|
// "strictPropertyInitialization": true,
|
|
// "noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"useUnknownInCatchVariables": true,
|
|
|
|
"sourceMap": true,
|
|
"declaration": false,
|
|
"downlevelIteration": true,
|
|
"experimentalDecorators": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"target": "es2015",
|
|
"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
|
|
}
|
|
}
|