theatre/.vscode/settings.json

27 lines
710 B
JSON
Raw Normal View History

2021-06-18 13:05:06 +02:00
{
"typescript.tsdk": "node_modules/typescript/lib",
"files.exclude": {
"**/node_modules": true,
// "**/.yarn": true,
"**/.cache": true,
"**/.temp": true,
"**/.history": true
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true,
"**/dist": true,
"docs/api": true
2021-06-18 13:05:06 +02:00
},
"eslint.workingDirectories": ["./"],
"eslint.options": {
"rulePaths": ["./devEnv/eslint/rules"],
"ignorePath": ".gitignore"
},
"eslint.run": "onSave",
"eslint.lintTask.enable": true,
2021-09-12 21:21:49 +02:00
"eslint.lintTask.options": ". --ext ts,tsx --ignore-path=.gitignore --rulesdir ./devEnv/eslint/rules",
"jest.jestCommandLine": "yarn jest"
2021-06-18 13:05:06 +02:00
}