2022-01-07 19:39:25 +00:00
|
|
|
/* Note: Open MCT does not intend to support the entire Typescript ecosystem at this time.
|
|
|
|
* This file is intended to add Intellisense for IDEs like VSCode. For more information
|
|
|
|
* about Typescript, please discuss in https://github.com/nasa/openmct/discussions/4693
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2024-09-16 23:23:56 +00:00
|
|
|
"target": "ES6",
|
2022-09-14 17:05:41 +00:00
|
|
|
"baseUrl": "./",
|
2022-01-07 19:39:25 +00:00
|
|
|
"allowJs": true,
|
2022-01-11 19:40:51 +00:00
|
|
|
"checkJs": false,
|
2022-10-22 00:29:52 +00:00
|
|
|
"declaration": true,
|
|
|
|
"emitDeclarationOnly": true,
|
|
|
|
"declarationMap": true,
|
2022-01-07 19:39:25 +00:00
|
|
|
"strict": true,
|
2022-03-29 21:39:49 +00:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"noImplicitOverride": true,
|
2024-03-26 19:11:00 +00:00
|
|
|
"noImplicitAny": false,
|
2024-09-16 23:23:56 +00:00
|
|
|
"outFile": "dist/types/index.d.ts",
|
|
|
|
"module": "NodeNext",
|
|
|
|
"moduleResolution": "NodeNext"
|
2022-09-14 17:05:41 +00:00
|
|
|
},
|
2024-03-28 21:49:00 +00:00
|
|
|
"include": [
|
|
|
|
"src/api/**/*.js"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"**/*Spec.js"
|
|
|
|
]
|
|
|
|
}
|