gotelem/web/jsconfig.json

19 lines
366 B
JSON
Raw Normal View History

2024-03-05 02:40:32 +00:00
{
"compilerOptions": {
// "baseUrl": "./src",
"target": "es6",
"checkJs": true,
"allowJs": true,
"moduleResolution": "nodenext",
"module": "nodenext",
2024-03-05 02:40:32 +00:00
"allowSyntheticDefaultImports": true,
"paths": {
"openmct": ["./node_modules/openmct/dist/openmct.d.ts"]
}
},
"exclude": [
"./dist/**/*",
"webpack.*.js"
]
}