You've already forked qoder-cli-vscode
- Add package.json with extension metadata and dependencies - Add tsconfig.json for TypeScript compilation - Add .eslintrc.json for code linting - Add .vscodeignore for packaging exclusions 🤖 Generated with [Qoder](https://qoder.com)
19 lines
293 B
JSON
19 lines
293 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "ES2020",
|
|
"outDir": "out",
|
|
"lib": [
|
|
"ES2020"
|
|
],
|
|
"sourceMap": true,
|
|
"rootDir": "src",
|
|
"strict": true,
|
|
"types": ["node", "vscode"]
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
".vscode-test"
|
|
]
|
|
}
|