thelounge/src/tsconfig.json

17 lines
392 B
JSON
Raw Normal View History

2022-05-02 07:56:38 +02:00
{
2022-05-03 03:32:20 +02:00
"extends": "../tsconfig.base.json",
"files": [
"../package.json",
"../client/js/constants.ts",
2022-05-03 08:16:34 +02:00
"../client/js/helpers/ircmessageparser/findLinks.ts",
"../client/js/helpers/ircmessageparser/cleanIrcMessage.ts"
2022-05-03 03:32:20 +02:00
],
"include": ["**/*"],
2022-05-02 07:56:38 +02:00
"compilerOptions": {
"types": ["node"],
2022-05-02 11:30:39 +02:00
"baseUrl": ".",
2022-05-03 05:14:30 +02:00
"noImplicitAny": false
2022-05-03 08:16:34 +02:00
},
"references": [{"path": "../"}]
2022-05-02 07:56:38 +02:00
}