-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathtsconfig.json
More file actions
29 lines (29 loc) · 754 Bytes
/
tsconfig.json
File metadata and controls
29 lines (29 loc) · 754 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
{
"compilerOptions": {
"rootDir": "./src",
"skipLibCheck": true,
"lib": [
"es2022",
"webworker"
],
"types": [
"vscode",
"node"
],
"module": "Node16",
"moduleResolution": "Node16",
"outDir": "./out/core",
"strict": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"declaration": true,
"stripInternal": true,
"sourceMap": true,
"declarationMap": true,
"noUnusedLocals": false,
"noUnusedParameters": false
},
"include": ["src/extension_core/**/*.ts", "src/common/**/*.ts"],
"exclude": ["src/webview/**/*.ts"]
}