thelounge/src/tsconfig.json
2022-05-21 11:50:55 -07:00

24 lines
565 B
JSON

{
"extends": "../tsconfig.base.json",
"files": [
"../package.json",
"../client/js/constants.ts",
"../client/js/helpers/ircmessageparser/findLinks.ts",
"../client/js/helpers/ircmessageparser/cleanIrcMessage.ts"
],
"ts-node": {
"files": true
},
// TODO: these should be imported from the base config,
// but ts-node doesn't seem to care.
// "include": ["**/*"],
// "typeRoots": ["./types/"],
"compilerOptions": {
"types": ["node"],
"baseUrl": ".",
"noImplicitAny": false
}
// "references": [{"path": "../"}]
}