forked from mirrors/probot
25 lines
584 B
JSON
25 lines
584 B
JSON
{
|
|
"extends": "@octokit/tsconfig",
|
|
"compilerOptions": {
|
|
"module": "Node16",
|
|
"verbatimModuleSyntax": false,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": true,
|
|
"pretty": true,
|
|
"strict": true,
|
|
"sourceMap": true,
|
|
"outDir": "./lib",
|
|
"skipLibCheck": true,
|
|
"noImplicitAny": true,
|
|
"esModuleInterop": true,
|
|
"declaration": true,
|
|
"resolveJsonModule": true,
|
|
"allowJs": true,
|
|
"lib": ["es2023", "dom"],
|
|
"moduleResolution": "node16"
|
|
},
|
|
"include": ["src/**/*"],
|
|
"compileOnSave": false
|
|
}
|