forked from internxt/drive-desktop
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtsconfig.json
More file actions
58 lines (58 loc) · 1.22 KB
/
tsconfig.json
File metadata and controls
58 lines (58 loc) · 1.22 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"compilerOptions": {
"target": "ESNext",
"module": "commonjs",
"lib": [
"dom",
"esnext"
],
"declaration": true,
"declarationMap": true,
"jsx": "react-jsx",
"strict": true,
"pretty": true,
"sourceMap": true,
"rootDir": ".",
"baseUrl": "./",
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": true,
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"resolveJsonModule": true,
"allowJs": true,
"outDir": "dist",
"types": [
"vitest/globals",
"node"
]
},
"exclude": [
"release/build",
"build",
"release/app/dist",
"dist",
".erb/dll",
"src/workers/backups/process.ts",
"src/workers/backups",
"src/workers/filesystems",
"__mock__"
],
"include": [
"src/**/*",
"src/types/**/*",
"tests/**/*",
"*.d.ts",
"assets/**/*.d.ts",
"vitest.config.*.ts",
"vitest.setup.*.ts"
]
}