Fix error when missing manifest.ui is treated like a file to be opened (#365)
[figma-linux.git] / tsconfig.json
blob69fe0ff5cca97b87651c99bccce96c3ba4de1a9c
2   "compilerOptions": {
3     "outDir": "./dist",
4     "baseUrl": "./",
5     "noImplicitAny": true,
6     "allowJs": false,
7     "target": "ESNext",
8     "module": "ESNext",
9     "moduleResolution": "nodenext",
10     "sourceMap": true,
11     "preserveConstEnums": true,
12     "removeComments": true,
13     "emitDecoratorMetadata": true,
14     "experimentalDecorators": true,
15     "allowSyntheticDefaultImports": true,
16     "strictPropertyInitialization": false,
17     "noImplicitThis": false,
18     "allowUnusedLabels": true,
19     "noUnusedLocals": false,
20     "strictNullChecks": false,
21     "lib": [
22       "dom",
23       "es7",
24       "esnext"
25     ],
26     "typeRoots": [
27       "node_modules/@types",
28       "src/types/**/*.d.ts"
29     ],
30     "paths": {
31       "Main": ["src/main"],
32       "Main/*": ["src/main/*"],
33       "Icons": ["src/renderer/Common/Icons"],
34       "Icons/*": ["src/renderer/Common/Icons/*"],
35       "Common": ["src/renderer/Common"],
36       "Common/*": ["src/renderer/Common/*"],
37       "Components": ["src/renderer/components"],
38       "Components/*": ["src/renderer/components/*"],
39       "Containers": ["src/renderer/Common/Containers"],
40       "Containers/*": ["src/renderer/Common/Containers/*"],
41       "Elements/*": ["src/renderer/elements/*"],
42       "Elements": ["src/renderer/elements"],
43       "Store": ["src/renderer/stores"],
44       "Store/*": ["src/renderer/stores/*"],
45       "DesktopAPI": ["DesktopAPI"],
46       "DesktopAPI/*": ["DesktopAPI/*"],
47       "Const": ["src/constants"],
48       "Utils": ["src/utils"],
49       "Utils/*": ["src/utils/*"],
50       "Enums": ["src/types/enums.ts"],
51       "Storage": ["src/main/Storage.ts"],
52       "Types": ["src/types"],
53       "Types/*": ["src/types/*"],
54       "*": ["node_modules/@types/*"]
55     }
56   },
57   "include": [
58     "src/constants/**/*",
59     "src/main/**/*",
60     "src/types/**/*",
61     "src/utils/**/*",
62   ]