Files
Wireguard-tools.js/.vscode/settings.json
T
Sirherobrine23 92c740cc14 Remove .ts files, migrate to vanilla javascript
I am removing the Typescript transpilation part, the project will have full typescript support, Typescript support will not be removed.
2023-09-12 00:35:32 -03:00

28 lines
782 B
JSON

{
"files.eol": "\n",
"files.encoding": "utf8",
"files.defaultLanguage": "typescript",
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.minimap.enabled": false,
"editor.detectIndentation": false,
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
"files.exclude": {
"**/node_modules/": true,
"**/**.d.ts": true,
"**/build/": true
},
"terminal.integrated.env.windows": {
"PATH": "${workspaceFolder}/node_modules/.bin;${env:PATH}"
},
"terminal.integrated.env.linux": {
"PATH": "${workspaceFolder}/node_modules/.bin:${env:PATH}"
},
"terminal.integrated.env.osx": {
"PATH": "${workspaceFolder}/node_modules/.bin:${env:PATH}"
}
}