mirror of
https://github.com/di-sukharev/opencommit.git
synced 2026-01-11 22:58:01 -05:00
31 lines
560 B
JSON
31 lines
560 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"lib": ["ES6", "ES2020"],
|
|
|
|
"module": "NodeNext",
|
|
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "NodeNext",
|
|
|
|
"allowJs": true,
|
|
|
|
"outDir": "./out",
|
|
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["test/jest-setup.ts"],
|
|
"exclude": ["node_modules"],
|
|
"ts-node": {
|
|
"esm": true,
|
|
"experimentalSpecifierResolution": "node"
|
|
}
|
|
}
|