You've already forked qoder-cli-vscode
chore: add project configuration files
- 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)
This commit is contained in:
18
tsconfig.json
Normal file
18
tsconfig.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"module": "commonjs",
|
||||
"target": "ES2020",
|
||||
"outDir": "out",
|
||||
"lib": [
|
||||
"ES2020"
|
||||
],
|
||||
"sourceMap": true,
|
||||
"rootDir": "src",
|
||||
"strict": true,
|
||||
"types": ["node", "vscode"]
|
||||
},
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
".vscode-test"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user