2018-05-26 04:17:19 +08:00
|
|
|
{
|
2024-01-26 05:03:28 +08:00
|
|
|
"extends": "@octokit/tsconfig",
|
2018-05-26 04:17:19 +08:00
|
|
|
"compilerOptions": {
|
2024-01-26 05:03:28 +08:00
|
|
|
"module": "Node16",
|
|
|
|
"verbatimModuleSyntax": false,
|
2018-05-26 04:17:19 +08:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"pretty": true,
|
|
|
|
"strict": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"outDir": "./lib",
|
|
|
|
"skipLibCheck": true,
|
2018-06-10 12:20:03 +08:00
|
|
|
"noImplicitAny": true,
|
2018-06-12 06:00:22 +08:00
|
|
|
"esModuleInterop": true,
|
2020-08-18 15:47:53 +08:00
|
|
|
"declaration": true,
|
2024-01-26 05:03:28 +08:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"lib": ["es2023", "dom"],
|
|
|
|
"moduleResolution": "node16"
|
2018-05-26 04:17:19 +08:00
|
|
|
},
|
2020-08-18 15:47:53 +08:00
|
|
|
"include": ["src/**/*"],
|
2018-05-26 04:17:19 +08:00
|
|
|
"compileOnSave": false
|
|
|
|
}
|