kibana/kbn_pm/tsconfig.json
Spencer 7d77d39e1f
[ts] set allowJs to true by default (#144281)
* [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
2022-11-01 15:26:44 -07:00

14 lines
237 B
JSON

{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"outDir": "target",
"checkJs": true,
"target": "ES2022",
"module": "ESNext"
},
"include": [
"src/**/*.mjs",
"src/**/*.ts",
],
"exclude": []
}