chore(client/ts): enable server config to compile client as well

pull/821/head
Elian Doran 2024-12-19 20:44:07 +07:00
parent c8866d2669
commit e4053de735
No known key found for this signature in database
1 changed files with 3 additions and 2 deletions

@ -7,6 +7,7 @@
"strict": true,
"noImplicitAny": true,
"resolveJsonModule": true,
"allowJs": true,
"lib": [
"ES2022"
],
@ -21,11 +22,11 @@
"./spec/**/*.ts"
],
"exclude": [
"./src/public/**/*",
"./node_modules/**/*",
"./spec-es6/**/*.ts"
],
"files": [
"src/types.d.ts"
"src/types.d.ts",
"src/public/app/types.d.ts"
]
}