-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
45 lines (45 loc) · 1019 Bytes
/
tsconfig.base.json
File metadata and controls
45 lines (45 loc) · 1019 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
45
{
"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,
"allowSyntheticDefaultImports": 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/edge",
"plugins/jwt",
],
"exclude": ["node_modules", "dist", "**/*.test.*"]
}