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

29 lines
691 B
JSON

{
"extends": "../tsconfig.base.json",
"files": [
"../package.json",
"../webpack.config.ts",
"../babel.config.cjs",
"../defaults/config.js",
"../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,
"outDir": "./dist",
"noEmit": false
}
// "references": [{"path": "../"}]
}