mirror of
https://github.com/di-sukharev/opencommit.git
synced 2026-01-12 23:28:16 -05:00
* 🚀 chore(generateCommitMessageFromGitDiff.ts): filter out null promises and update TODO comment * 🚀 chore(tsconfig.json): update target to ES2020 and remove ES5 from lib
30 lines
540 B
JSON
30 lines
540 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"lib": ["ES5", "ES6"],
|
|
|
|
"module": "ESNext",
|
|
// "rootDir": "./src",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"outDir": "./out",
|
|
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
|
|
"skipLibCheck": true
|
|
},
|
|
"exclude": ["node_modules"],
|
|
"ts-node": {
|
|
"esm": true,
|
|
"experimentalSpecifierResolution": "node"
|
|
}
|
|
}
|