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": {
|
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,
|
2022-01-07 19:39:25 +00:00
|
|
|
"module": "esnext",
|
2022-03-29 21:39:49 +00:00
|
|
|
"moduleResolution": "node",
|
2022-09-14 17:05:41 +00:00
|
|
|
"outDir": "dist",
|
2022-10-22 00:29:52 +00:00
|
|
|
"skipLibCheck": true,
|
2022-03-29 21:39:49 +00:00
|
|
|
"paths": {
|
|
|
|
// matches the alias in webpack config, so that types for those imports are visible.
|
|
|
|
"@/*": ["src/*"]
|
|
|
|
}
|
2022-09-14 17:05:41 +00:00
|
|
|
},
|
2022-10-22 00:29:52 +00:00
|
|
|
"include": [
|
|
|
|
"src/api/**/*.js"
|
|
|
|
],
|
2022-09-14 17:05:41 +00:00
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
2022-10-22 00:29:52 +00:00
|
|
|
"dist",
|
|
|
|
"**/*Spec.js"
|
2022-09-14 17:05:41 +00:00
|
|
|
]
|
2022-01-07 19:39:25 +00:00
|
|
|
}
|