onnxruntime/js/.vscode/settings.json
Yulong Wang ad817d0efa
[js/web] optimize tsc for web: split out "npm prepare" (#17955)
### Description
optimize tsc for web: split out "npm prepare"
2023-10-16 09:04:54 -07:00

57 lines
1.5 KiB
JSON

{
"[cpp]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "xaver.clang-format"
},
"[json]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[markdown]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "xaver.clang-format"
},
"[typescript]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "xaver.clang-format"
},
"clang-format.executable": "${workspaceRoot}/node_modules/.bin/clang-format",
"clang-format.style": "file",
"editor.detectIndentation": false,
"editor.insertSpaces": true,
"editor.rulers": [120],
"editor.tabSize": 2,
"editor.wrappingIndent": "none",
"files.exclude": {
"common/lib/**/*.js.map": true,
"common/lib/**/*.js": true,
"node/lib/**/*.js.map": true,
"node/lib/**/*.js": true,
"web/lib/**/*.js.map": true,
"web/lib/**/*.js": true,
"web/lib/**/*.d.ts": true
},
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"search.exclude": {
"**/node_modules": true,
"./types": true
},
"typescript.tsdk": "node_modules/typescript/lib",
"git.detectSubmodules": false,
"cmake.configureOnOpen": false,
"json.schemas": [
{
"fileMatch": ["web/test/data/ops/*.jsonc"],
"url": "./web/test/op-test-schema.json"
}
]
}