mirror of
https://github.com/di-sukharev/opencommit.git
synced 2026-01-11 22:58:01 -05:00
chore(tsconfig.json): change target to ESNext The @dqbd/tiktoken dependency was removed from the package.json file. This dependency was not being used in the project and was therefore removed to reduce the size of the project. The target in the tsconfig.json file was changed from ES2020 to ESNext to allow for the use of the latest ECMAScript features.
30 lines
540 B
JSON
30 lines
540 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"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"
|
|
}
|
|
}
|