mirror of
https://github.com/elastic/kibana.git
synced 2025-04-20 16:03:20 -04:00
* [ts] set allowJs to true by default * fix scripts/check_ts_projects, original implementation is now wildly inefficient * produce stats in check_ts_projects to make sure it's actually working * fix imports
14 lines
237 B
JSON
14 lines
237 B
JSON
{
|
|
"extends": "../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"outDir": "target",
|
|
"checkJs": true,
|
|
"target": "ES2022",
|
|
"module": "ESNext"
|
|
},
|
|
"include": [
|
|
"src/**/*.mjs",
|
|
"src/**/*.ts",
|
|
],
|
|
"exclude": []
|
|
}
|