ScreenSharingThing/Server/tsconfig.json

14 lines
278 B
JSON
Raw Normal View History

2023-07-02 13:51:49 +00:00
{
"compilerOptions": {
"module": "commonjs",
"target": "esnext",
2023-07-13 20:59:14 +00:00
"esModuleInterop": true,
2023-07-02 13:51:49 +00:00
"outDir": "lib/",
"sourceMap": true,
"declaration": true,
"noImplicitAny": false
},
"exclude": ["node_modules"],
"include": ["src"]
}