microsoft/vscode-react-native

Public

mirrored fromhttps://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
0.6.1

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.vscode/settings.json

18lines · modecode

1// Place your settings in this file to overwrite default and user settings.
2{
3 "javascript.validate.enable": false,
4 "files.trimTrailingWhitespace": true,
5 "eslint.enable": false,
6 "editor.insertSpaces": true,
7 "editor.tabSize": 4,
8 "files.exclude": {
9 "**/node_modules": true,
10 "**/*.js": {
11 "when": "$(basename).ts"
12 },
13 "**/out": true,
14 "**/*.js.map": true
15 }
16,
17"typescript.tsdk": "./node_modules/typescript/lib"
18}
19