-
Notifications
You must be signed in to change notification settings - Fork 33
/
tsconfig.types.json
69 lines (69 loc) · 1.48 KB
/
tsconfig.types.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"compilerOptions": {
"module": "es2022",
"moduleResolution": "node",
"target": "es2020",
"outDir": "dist/types",
"rootDir": "./",
"experimentalDecorators": true,
"noImplicitReturns": true,
"noImplicitOverride": true,
"noUnusedLocals": true,
"allowUnreachableCode": false,
"strict": true,
"exactOptionalPropertyTypes": false,
"useUnknownInCatchVariables": false,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"lib": [
"ES2016",
"ES2017.Object",
"ES2017.String",
"ES2017.Intl",
"ES2017.TypedArrays",
"ES2018.AsyncIterable",
"ES2018.AsyncGenerator",
"ES2018.Promise",
"ES2018.Regexp",
"ES2018.Intl",
"ES2019.Array",
"ES2019.Object",
"ES2019.String",
"ES2019.Symbol",
"ES2020.BigInt",
"ES2020.Promise",
"ES2020.String",
"ES2020.Symbol.WellKnown",
"ES2020.Intl",
"DOM",
"DOM.Iterable",
"WebWorker.ImportScripts"
],
"removeComments": false,
"preserveConstEnums": true,
"paths": {
"vs/*": [
"./vscode/src/vs/*"
],
"vscode/*": [
"./vscode/*"
]
},
"declaration": true,
"emitDeclarationOnly": true,
"skipLibCheck": true
},
"include": [
"./vscode/src/vscode-dts/vscode.proposed.*.d.ts",
"src/services.ts",
"src/types.d.ts",
"src/extensions.ts",
"src/localExtensionHost.ts",
"src/service-override/*.ts",
"src/monaco.ts",
"src/l10n.ts",
"src/editor.api.ts",
"src/rollup-vsix-plugin.ts",
"src/rollup-extension-directory-plugin.ts"
]
}