modeco80
4212050ae5
Mostly out of cleanliness, and actually bundling the libraries properly. Yes, this includes the backend, because.. why not? It seems to work, at least. The VNC client for instance also is now fully strict TypeScript.
10 lines
245 B
JSON
10 lines
245 B
JSON
// This is the base tsconfig the entire Socket2 project uses
|
|
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"moduleResolution": "Node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
}
|
|
}
|