forked from mirrors/probot
20 lines
453 B
JSON
20 lines
453 B
JSON
{
|
|
"extends": "@tsconfig/node10/tsconfig.json",
|
|
"compilerOptions": {
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": true,
|
|
"pretty": true,
|
|
"strict": true,
|
|
"sourceMap": true,
|
|
"outDir": "./lib",
|
|
"skipLibCheck": true,
|
|
"noImplicitAny": true,
|
|
"esModuleInterop": true,
|
|
"declaration": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"compileOnSave": false
|
|
}
|