mirror of
https://github.com/zhigang1992/pr-auto-labeler.git
synced 2026-01-12 08:14:29 +08:00
25 lines
517 B
JSON
25 lines
517 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": false,
|
|
"lib": ["es2015", "es2017"],
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"target": "es5",
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": true,
|
|
"pretty": true,
|
|
"strict": true,
|
|
"sourceMap": true,
|
|
"outDir": "./lib",
|
|
"skipLibCheck": true,
|
|
"noImplicitAny": true,
|
|
"esModuleInterop": true,
|
|
"declaration": true
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"compileOnSave": false
|
|
}
|