-
-
Notifications
You must be signed in to change notification settings - Fork 378
Expand file tree
/
Copy pathtsconfig.json
More file actions
25 lines (25 loc) · 650 Bytes
/
Copy pathtsconfig.json
File metadata and controls
25 lines (25 loc) · 650 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
{
"files": ["./src/index.ts"],
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist/webapi",
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": ["ES2022", "DOM"],
"types": [],
"strict": true,
"skipLibCheck": false,
"forceConsistentCasingInFileNames": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"sourceMap": false,
"removeComments": true,
"verbatimModuleSyntax": true,
"erasableSyntaxOnly": true
}
}