mirror of
https://github.com/nasa/openmct.git
synced 2024-12-21 06:03:08 +00:00
cae579f5b3
- Fixes erroneous TS language server warnings showing up in the VSCode terminal - Ensures TypeScript language server features (such as refactor) are able to work properly by excluding build files
26 lines
783 B
JSON
26 lines
783 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,
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"noImplicitOverride": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"outDir": "dist",
|
|
"paths": {
|
|
// matches the alias in webpack config, so that types for those imports are visible.
|
|
"@/*": ["src/*"]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist"
|
|
]
|
|
}
|