-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtsconfig.json
More file actions
35 lines (35 loc) · 894 Bytes
/
tsconfig.json
File metadata and controls
35 lines (35 loc) · 894 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
29
30
31
32
33
34
35
{
"compilerOptions": {
"target": "ES2020",
"module": "CommonJS",
"outDir": "dist_electron",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"skipLibCheck": true,
"allowJs": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"resolveJsonModule": true,
"baseUrl": "src",
"types": ["jest", "node"],
"paths": {
"@/*": ["*"],
"@tests/*": ["../tests/*"],
},
"lib": ["esnext", "dom", "dom.iterable", "scripthost"],
"typeRoots": ["src/@types", "node_modules/@types"],
"useUnknownInCatchVariables": false
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx",
"node_modules/@types/jest/index.d.ts"
],
"exclude": ["node_modules", "dist_electron", "release"]
}