gotelem/web/tsconfig.json
saji 0f2af76156
All checks were successful
Go / build (1.21) (push) Successful in 1m8s
Go / build (1.22) (push) Successful in 1m7s
add some types
2024-03-08 19:25:08 -06:00

20 lines
397 B
JSON

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