Skip to content

Commit

Permalink
bugfix: update tsconfig to set module to NodeNext and exclude openmct…
Browse files Browse the repository at this point in the history
…/e2e
  • Loading branch information
unlikelyzero committed Sep 14, 2024
1 parent fa8efa8 commit 1be5c7d
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
*/
{
"compilerOptions": {
"target": "ES6",
"baseUrl": "./",
"allowJs": true,
"checkJs": false,
Expand All @@ -14,14 +15,18 @@
"esModuleInterop": true,
"noImplicitOverride": true,
"noImplicitAny": false,
"outFile": "dist/types/index.d.ts"
"outFile": "dist/types/index.d.ts",
"module": "NodeNext",
"moduleResolution": "nodenext"
},
"include": [
"src/api/**/*.js"
],
"exclude": [
"e2e",
"node_modules",
"dist",
"**/*Spec.js"
"**/*Spec.js",
"openmct/e2e"
]
}

0 comments on commit 1be5c7d

Please # to comment.