-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnode.config.json
More file actions
87 lines (87 loc) · 2.31 KB
/
Copy pathnode.config.json
File metadata and controls
87 lines (87 loc) · 2.31 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"$schema": "https://nodejs.org/docs/latest/node-config-schema.json",
"nodeOptions": {
"allow-fs-read": [
"./src",
"./electron",
"./shared",
"./dist",
"./node_modules",
"./coverage",
"./tests",
"./config",
"./scripts",
"./docs"
],
"allow-fs-write": [
"./dist",
"./coverage",
"./temp",
"./.cache",
"./node_modules/.cache"
],
"conditions": [
"development",
"node"
],
"diagnostic-dir": "./temp",
"disable-warning": [
"DEP0190",
"ExperimentalWarning"
],
"enable-source-maps": true,
"experimental-detect-module": true,
"experimental-require-module": true,
"experimental-transform-types": true,
"max-old-space-size-percentage": "80",
"redirect-warnings": "./temp/node-warnings.log",
"trace-deprecation": false,
"trace-warnings": false,
"warnings": false
},
"testRunner": {
"experimental-test-coverage": true,
"test-concurrency": 4,
"test-coverage-branches": 90,
"test-coverage-exclude": [
"**/test/**",
"**/tests/**",
"**/*.test.{ts,tsx}",
"**/*.spec.{ts,tsx}",
"**/node_modules/**",
"**/dist/**",
"**/coverage/**"
],
"test-coverage-functions": 95,
"test-coverage-include": [
"src/**/*.{ts,tsx}",
"electron/**/*.ts",
"shared/**/*.ts"
],
"test-coverage-lines": 90,
"test-force-exit": true,
"test-isolation": "process",
"test-reporter": [
"spec",
"json"
],
"test-reporter-destination": [
"stdout",
"./coverage/test-results.json"
],
"test-timeout": 30000,
"test-update-snapshots": true
},
"watch": {
"watch": true,
"watch-kill-signal": "SIGTERM",
"watch-path": [
"./src",
"./electron",
"./shared",
"./index.html",
"./vite.config.ts"
],
"watch-preserve-output": true
}
}