mirror of
https://github.com/di-sukharev/opencommit.git
synced 2026-01-12 23:28:16 -05:00
chore: update .prettierignore to include /out directory docs: update LICENSE file to include link to author's GitHub profile chore: update tsconfig.json to move resolveJsonModule above moduleResolution for consistency
30 lines
540 B
JSON
30 lines
540 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"lib": ["ES5", "ES6"],
|
|
|
|
"module": "ESNext",
|
|
// "rootDir": "./src",
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "node",
|
|
|
|
"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"
|
|
}
|
|
}
|