mirror of
https://github.com/pnpm/pnpm.git
synced 2025-12-23 23:29:17 -05:00
* chore: bump node-version to v18.18 min required version for eslint flat config * chore: migrate eslint to flat config * chore: migrate monorepo to flat config * fix: remove old eslint unused disable directives * chore: include meta-updater in the tsconfig * style: remove semicolons * style: fix --------- Co-authored-by: Zoltan Kochan <z@kochan.io>
14 lines
222 B
JSON
14 lines
222 B
JSON
{
|
|
"extends": "@pnpm/tsconfig",
|
|
"compilerOptions": {
|
|
"outDir": "lib",
|
|
"rootDir": "src"
|
|
},
|
|
"include": [
|
|
".meta-updater/**/*.ts",
|
|
"**/src/**/*.ts",
|
|
"**/test/**/*.ts",
|
|
"typings/**/*.d.ts"
|
|
]
|
|
}
|