mirror of
https://github.com/zhigang1992/probot.git
synced 2026-06-14 18:08:58 +08:00
24 lines
585 B
JSON
24 lines
585 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": false,
|
|
"lib": ["es2017"],
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"target": "es5",
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": true,
|
|
"pretty": true,
|
|
"strict": true,
|
|
"sourceMap": true,
|
|
"outDir": "./lib",
|
|
"skipLibCheck": true,
|
|
"noImplicitAny": false, // remove this once we've added all types
|
|
"declaration": true // enable this once all files are .ts and we can remove allowJs
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"compileOnSave": false
|
|
}
|