-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (28 loc) · 660 Bytes
/
tsconfig.json
File metadata and controls
28 lines (28 loc) · 660 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"compilerOptions": {
"strict": true,
"baseUrl": ".",
"module": "ES2020",
"moduleResolution": "Node",
"paths": {
"_/*": ["src/*"],
"_public/*": ["public/*"],
"_main/*": ["src/main/*"],
"_preload/*": ["src/preload/*"],
"_renderer/*": ["src/renderer/*"],
"_types/*": ["src/types/*"],
"_utils/*": ["src/utils/*"],
"_tests/*": ["tests/*"]
},
"typeRoots": [
"./node_modules/@types",
"./src/types"
],
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "react",
"target": "ES2020"
},
"include": ["src/**/*"]
}