mirror of
https://github.com/nasa/openmct.git
synced 2024-12-18 12:56:25 +00:00
de122b91c2
* bugfix: update tsconfig to set module to NodeNext and exclude openmct/e2e * chore: remove unnecessary paths from exclude - the `exclude` option only excludes files in the context of the `include` paths, if there are any. We can remove some of these because they don't match anything in the include paths. * chore: fix capitalization for consistency --------- Co-authored-by: Jesse Mazzella <jesse.d.mazzella@nasa.gov>
28 lines
762 B
JSON
28 lines
762 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": {
|
|
"target": "ES6",
|
|
"baseUrl": "./",
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"declarationMap": true,
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitAny": false,
|
|
"outFile": "dist/types/index.d.ts",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext"
|
|
},
|
|
"include": [
|
|
"src/api/**/*.js"
|
|
],
|
|
"exclude": [
|
|
"**/*Spec.js"
|
|
]
|
|
} |