mirror of
https://github.com/mshick/add-pr-comment.git
synced 2025-12-31 06:19:53 +11:00
19 lines
449 B
JSON
19 lines
449 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "ES2018",
|
|
"lib": ["ES2020"],
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitAny": true,
|
|
"removeComments": false,
|
|
"preserveConstEnums": true,
|
|
"resolveJsonModule": true,
|
|
"rootDir": "src",
|
|
"outDir": "./lib"
|
|
},
|
|
"exclude": ["node_modules", "**/*.test.ts"]
|
|
}
|