thelounge/tsconfig.json

16 lines
294 B
JSON
Raw Normal View History

2022-05-03 04:20:17 +02:00
{
"extends": "./tsconfig.base.json",
2022-05-05 00:41:57 +02:00
"files": ["./webpack.config.ts", "./babel.config.cjs", "./src/helper.ts"],
"references": [
{
2022-05-03 05:44:20 +02:00
"path": "./src"
},
{
"path": "./client"
}
2022-05-06 21:41:13 +02:00
],
"compilerOptions": {
"noImplicitAny": false // TODO: Remove eventually
}
2022-05-03 04:20:17 +02:00
}