forked from TencentCloud/tencentcloud-serverless-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
32 lines (32 loc) · 860 Bytes
/
tsconfig.json
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
{
"compilerOptions": {
"target": "es2017",
"lib": ["es2015", "es2016", "es2017", "dom"],
"allowJs": false,
"allowUnreachableCode": false,
"allowUnusedLabels":false,
"allowSyntheticDefaultImports": true,
"charset": "utf8",
"declaration": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"importHelpers": false,
"module": "commonjs",
"moduleResolution": "node",
"noEmitOnError": false,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": false,
"noUnusedLocals": true,
"noUnusedParameters":false,
"outDir": "./dist",
"baseUrl": "./src",
"pretty": true,
"removeComments": true,
"stripInternal": true,
"types": ["node","jest"],
"strict": false
},
"compileOnSave": true,
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}