gotelem/web/jsconfig.json
saji 13205c1668
Some checks failed
Go / build (1.21) (push) Failing after 1m6s
Go / build (1.22) (push) Failing after 1m5s
got realtime working
added demo livestream for testing
added openMCT realtime plugin
fixed websocket cross-origin fail
2024-03-08 11:51:59 -06:00

19 lines
366 B
JSON

{
"compilerOptions": {
// "baseUrl": "./src",
"target": "es6",
"checkJs": true,
"allowJs": true,
"moduleResolution": "nodenext",
"module": "nodenext",
"allowSyntheticDefaultImports": true,
"paths": {
"openmct": ["./node_modules/openmct/dist/openmct.d.ts"]
}
},
"exclude": [
"./dist/**/*",
"webpack.*.js"
]
}