Files
probot/tsconfig.json
2017-12-30 23:14:26 -05:00

23 lines
565 B
JSON

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