thelounge/tsconfig.json
2022-05-21 11:49:28 -07:00

20 lines
354 B
JSON

{
"extends": "./tsconfig.base.json",
"files": ["./webpack.config.ts", "./babel.config.cjs", "./src/helper.ts"],
"compilerOptions": {
"paths": {
"@src/*": ["src/*"],
"@client/*": ["client/*"]
}
},
"exclude": ["./node_modules"],
"references": [
{
"path": "./src,"
},
{
"path": "./client"
}
]
}