mirror of
https://github.com/nasa/openmct.git
synced 2024-12-18 20:57:53 +00:00
6e264517f8
* chore: update tsconfig to target modern ES * docs: update UserProvider * docs: update UserAPI, make openmct private * docs: update StatusAPI * refactor: convert ViewRegistry to ES6 class * docs: finish type imports for openmct api * docs: minor doc improvements * docs: add UserIndicator readme * docs: add User API section to API docs * docs: document Mission Status * docs(JSDoc): primitive types should be lowercase, otherwise TitleCase
30 lines
912 B
JSON
30 lines
912 B
JSON
/* 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": {
|
|
"baseUrl": "./",
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"declarationMap": true,
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitAny": false,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"outDir": "dist",
|
|
"skipLibCheck": true,
|
|
"target": "ES2015",
|
|
"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"]
|
|
}
|