Pulumi code for my server setup
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove unnecessary tsconfig.json options

+3 -5
+3 -5
tsconfig.json
··· 1 1 { 2 2 "compilerOptions": { 3 3 "strict": true, 4 - "outDir": "bin", 5 4 "target": "esnext", 6 5 "module": "esnext", 7 6 "moduleResolution": "node", 8 - "sourceMap": true, 9 7 "experimentalDecorators": true, 10 8 "pretty": true, 11 9 "noFallthroughCasesInSwitch": true, 12 10 "noImplicitReturns": true, 13 11 "forceConsistentCasingInFileNames": true 14 12 }, 15 - "files": [ 16 - "index.ts" 17 - ] 13 + "include": [ 14 + "src/**/*" 15 + ], 18 16 }