mirror of
https://github.com/nasa/openmct.git
synced 2024-12-19 13:17:53 +00:00
651e61954c
* add some types to XAxisModel * some more type defs and small code tweaks while getting familiar with plots * more type annotations and a few small tweaks * more type annotations and small tweaks to make types show * add mocha types * Add karma and jasmine, too * further simplify plot canvas creation * further simplify plot canvas creation * update types, avoid runtime behavior in type definition that breaks SeriesCollection * undo the changes to MctChart, improve it later * lint fix Co-authored-by: unlikelyzero <jchill2@gmail.com> Co-authored-by: John Hill <john.c.hill@nasa.gov> Co-authored-by: Jamie V <jamie.j.vigliotta@nasa.gov>
21 lines
670 B
JSON
21 lines
670 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": {
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"noImplicitOverride": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
|
|
"paths": {
|
|
// matches the alias in webpack config, so that types for those imports are visible.
|
|
"@/*": ["src/*"]
|
|
}
|
|
}
|
|
}
|