gotelem/web/tsconfig.json

20 lines
397 B
JSON
Raw Permalink Normal View History

2024-03-08 23:09:08 +00:00
{
"compilerOptions": {
// "baseUrl": "./src",
"target": "es6",
"checkJs": true,
"allowJs": true,
2024-03-09 01:25:08 +00:00
// "moduleResolution": "NodeNext",
2024-03-08 23:09:08 +00:00
"allowSyntheticDefaultImports": true,
"paths": {
"openmct": ["./node_modules/openmct/dist/openmct.d.ts"]
},
"esModuleInterop": true,
},
"exclude": [
"./dist/**/*",
"webpack.*.js",
"eslint.config.js"
]
}