probot/tsconfig.json

25 lines
581 B
JSON

{
"compilerOptions": {
"allowJs": false,
"lib": ["es2015", "es2017"],
"module": "commonjs",
"moduleResolution": "node",
"target": "es5",
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"pretty": true,
"strict": true,
"sourceMap": true,
"outDir": "./lib",
"skipLibCheck": true,
"noImplicitAny": true,
"esModuleInterop": true,
"declaration": true // enable this once all files are .ts and we can remove allowJs
},
"include": [
"src/**/*"
],
"compileOnSave": false
}