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
|
2023-05-18 21:54:46 +00:00
|
|
|
*/
|
2022-01-07 19:39:25 +00:00
|
|
|
{
|
2023-05-18 21:54:46 +00:00
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": "./",
|
|
|
|
"allowJs": true,
|
|
|
|
"checkJs": false,
|
|
|
|
"declaration": true,
|
|
|
|
"emitDeclarationOnly": true,
|
|
|
|
"declarationMap": true,
|
|
|
|
"strict": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"noImplicitOverride": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"outDir": "dist",
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"paths": {
|
|
|
|
// matches the alias in webpack config, so that types for those imports are visible.
|
|
|
|
"@/*": ["src/*"]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"include": ["src/api/**/*.js"],
|
|
|
|
"exclude": ["node_modules", "dist", "**/*Spec.js"]
|
2022-01-07 19:39:25 +00:00
|
|
|
}
|