Fix cli compilation (#8244)

* fix cli compilation

* [ci:force] latest libs

* [ci:force] delete old mergify config
This commit is contained in:
Denys Vuika
2023-02-08 11:54:26 +00:00
committed by GitHub
parent 1a00249f6a
commit cd84be9712
4 changed files with 1941 additions and 40 deletions

View File

@@ -16,23 +16,11 @@
"skipLibCheck": true,
"strictNullChecks": false,
"target": "es2018",
"lib": [
"es2018",
"dom"
],
"lib": ["es2018", "dom"],
"baseUrl": ".",
"typeRoots": [
"./node_modules/@types"
],
"types": [
"node"
],
"paths": {
}
"typeRoots": ["node_modules/@types"],
"types": ["node"],
"paths": {}
},
"exclude": [
"dist/**/*",
"./build.ts",
"node_modules/**/*"
]
"exclude": ["dist/**/*", "./build.ts", "node_modules"]
}