feat: add desktop repo (#1071)

This commit is contained in:
Mo
2022-06-07 11:52:15 -05:00
committed by GitHub
parent 0bb12db948
commit 0b7ce82aaa
135 changed files with 17821 additions and 180 deletions

View File

@@ -0,0 +1,21 @@
{
"compilerOptions": {
"target": "ES2019",
"moduleResolution": "node",
"types": ["node"],
"allowJs": true,
"noEmit": false,
"sourceMap": true,
"skipLibCheck": true,
"strict": true,
"esModuleInterop": true,
"typeRoots": ["./app/@types", "./node_modules/@types"],
"baseUrl": ".",
"paths": {
"@web/*": ["../web/src/javascripts/*"]
}
},
"include": ["app/**/*"],
"exclude": ["node_modules", "app/dist"],
"files": ["app/index.ts", "app/javascripts/Renderer/Renderer.ts"]
}