Skip to content

Commit 4218951

Browse files
1 parent b21c6b0 commit 4218951

File tree

2 files changed

+32
-38
lines changed

2 files changed

+32
-38
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2-
"dependencies": {},
3-
"description": "VS Code module for installing python packages",
4-
"devDependencies": {},
52
"name": "@vscode/python-installer",
3+
"description": "VS Code module for installing python packages",
64
"scripts": {
75
"compile": "tsc -p ./",
86
"compilewatch": "tsc -watch -p ./",
97
"download-api": "vscode-dts dev",
108
"postdownload-api": "vscode-dts main"
11-
}
9+
},
10+
"dependencies": {},
11+
"devDependencies": {}
1212
}

tsconfig.json

Lines changed: 28 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,29 @@
11
{
2-
"compilerOptions": {
3-
"module": "commonjs",
4-
"moduleResolution": "node",
5-
"target": "es2018",
6-
"outDir": "out", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
7-
"lib": [
8-
"es6",
9-
"es2018",
10-
"dom",
11-
"ES2019",
12-
"ES2020"
13-
],
14-
"sourceMap": true,
15-
"rootDir": "src",
16-
"experimentalDecorators": true,
17-
"allowSyntheticDefaultImports": true,
18-
"strict": true,
19-
"noImplicitAny": true,
20-
"noImplicitThis": true,
21-
"noUnusedLocals": true,
22-
"noUnusedParameters": true,
23-
"noFallthroughCasesInSwitch": true,
24-
"removeComments": true,
25-
"declaration": true
26-
},
27-
"exclude": [
28-
"node_modules",
29-
".vscode-test",
30-
".vscode test",
31-
"build",
32-
"out",
33-
"tmp"
34-
]
35-
}
2+
"compilerOptions": {
3+
"module": "commonjs",
4+
"moduleResolution": "node",
5+
"target": "es2018",
6+
"outDir": "out" /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */,
7+
"lib": ["es6", "es2018", "dom", "ES2019", "ES2020"],
8+
"sourceMap": true,
9+
"rootDir": "src",
10+
"experimentalDecorators": true,
11+
"allowSyntheticDefaultImports": true,
12+
"strict": true,
13+
"noImplicitAny": true,
14+
"noImplicitThis": true,
15+
"noUnusedLocals": true,
16+
"noUnusedParameters": true,
17+
"noFallthroughCasesInSwitch": true,
18+
"removeComments": true,
19+
"declaration": true
20+
},
21+
"exclude": [
22+
"node_modules",
23+
".vscode-test",
24+
".vscode test",
25+
"build",
26+
"out",
27+
"tmp"
28+
]
29+
}

0 commit comments

Comments
 (0)