Multicolumn Bluesky client powered by Angular
at master 1.3 kB view raw
1/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */ 2/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */ 3{ 4 "compileOnSave": false, 5 "compilerOptions": { 6 "baseUrl": "./src", 7 "outDir": "./dist/out-tsc", 8 "strict": true, 9 "noImplicitOverride": true, 10 "noPropertyAccessFromIndexSignature": true, 11 "noImplicitReturns": true, 12 "noFallthroughCasesInSwitch": true, 13 "skipLibCheck": true, 14 "isolatedModules": true, 15 "esModuleInterop": true, 16 "experimentalDecorators": true, 17 "moduleResolution": "bundler", 18 "importHelpers": true, 19 "target": "ES2023", 20 "module": "ESNext", 21 "paths": { 22 "@components/*": ["app/components/*"], 23 "@core/*": ["app/core/*"], 24 "@models/*": ["app/models/*"], 25 "@services/*": ["app/services/*"], 26 "@shared/*": ["app/shared/*"], 27 "@views/*": ["app/views/*"] 28 }, 29 "strictPropertyInitialization": false, 30 "verbatimModuleSyntax": false, 31 "strictNullChecks": false, 32 "noImplicitAny": false 33 }, 34 "angularCompilerOptions": { 35 "enableI18nLegacyMessageIdFormat": false, 36 "strictInjectionParameters": true, 37 "strictInputAccessModifiers": true, 38 "strictTemplates": true 39 } 40}