mirror of
https://github.com/mshick/add-pr-comment.git
synced 2025-12-31 14:20:32 +11:00
* Without pullRequest * Try * Use the last octokit * Fix * Update tests * Fix * Update package-lock.json
18 lines
424 B
JSON
18 lines
424 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "esnext",
|
|
"lib": ["es2015", "es2017"],
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitAny": true,
|
|
"removeComments": false,
|
|
"preserveConstEnums": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": ["**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|