thelounge/src/tsconfig.json

21 lines
525 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"
],
// TODO: these should be imported from the base config,
// but ts-node doesn't seem to care.
"include": ["**/*"],
"typeRoots": ["./src/types/"],
"compilerOptions": {
"types": ["node"],
"baseUrl": ".",
"noImplicitAny": false
}
// "references": [{"path": "../"}]
}