-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathtsconfig.json
More file actions
52 lines (52 loc) · 1.05 KB
/
tsconfig.json
File metadata and controls
52 lines (52 loc) · 1.05 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
{
"compilerOptions": {
"composite": true,
"module": "nodenext",
"target": "ES2021",
"lib": ["ES2021"],
"moduleResolution": "nodenext",
"declaration": true,
"noImplicitAny": false,
"skipLibCheck": true,
"noUnusedLocals": false,
"importHelpers": true,
"removeComments": false,
"noLib": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"useUnknownInCatchVariables": false,
"esModuleInterop": true,
"sourceMap": false,
"allowJs": false,
"strict": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"strictPropertyInitialization": false,
"types": ["node"]
},
"jest": {},
"tsc-alias": {
"resolveFullPaths": true,
"verbose": false
},
"include": [
"packages/**/*",
"plugins/nunjucks",
"plugins/ejs",
"plugins/basic-auth",
"plugins/static",
"plugins/websocket",
"plugins/session",
"plugins/jwt",
],
"exclude": ["node_modules", "dist", "**/*.test.*"],
"files": [],
"references": [
{
"path": "./packages/common"
},
{
"path": "./packages/core"
}
]
}