forked from pryv/open-pryv.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
44 lines (44 loc) · 960 Bytes
/
tsconfig.json
File metadata and controls
44 lines (44 loc) · 960 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
36
37
38
39
40
41
42
43
44
{
"compilerOptions": {
"target": "es2022",
"module": "nodenext",
"moduleResolution": "nodenext",
"lib": [
"es2022",
"DOM"
],
"esModuleInterop": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"allowJs": true,
"checkJs": false,
"noEmit": true,
"strict": false,
"noImplicitAny": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"alwaysStrict": true,
"strictBindCallApply": true,
"noImplicitThis": true,
"useUnknownInCatchVariables": true,
"strictFunctionTypes": true,
"forceConsistentCasingInFileNames": true,
"maxNodeModuleJsDepth": 0
},
"include": [
"components/**/*.ts",
"components/**/*.js",
"storages/**/*.ts",
"storages/**/*.js"
],
"exclude": [
"node_modules",
"dist",
"**/node_modules",
"**/*.test.js",
"**/*.test.ts",
"**/test/**",
"bin/**",
"config/plugins/**"
]
}