mirror of
https://github.com/pezkuwichain/pezkuwi-api.git
synced 2026-04-22 02:08:01 +00:00
24 lines
558 B
JSON
24 lines
558 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"baseUrl": "./packages",
|
|
"composite": false,
|
|
"noUnusedLocals": true
|
|
},
|
|
"include": [
|
|
"packages/**/src/**/*",
|
|
"packages/**/scripts/**/*",
|
|
"scripts/*",
|
|
".prettierrc.cjs",
|
|
"eslint.config.js",
|
|
"rollup.config.js"
|
|
],
|
|
"exclude": [
|
|
"**/node_modules/**/*",
|
|
// We exclude these since it creates some issues with the
|
|
// @typescript-eslint/dot-notation rules
|
|
"packages/api-augment/src/zagros/*.ts",
|
|
"packages/api-augment/src/pezkuwi/*.ts"
|
|
]
|
|
}
|