teratail header banner
teratail header banner
質問するログイン新規登録

回答編集履歴

1

コードを修正

2021/10/01 10:18

投稿

itagagaki
itagagaki

スコア8402

answer CHANGED
@@ -7,32 +7,29 @@
7
7
 
8
8
  ```JSON
9
9
  [{
10
- "vscode-w3cvalidation.validator-token": "Thu, 01 Jan 1970 00:00:00 GMT",
10
+ "vscode-w3cvalidation.validator-token": "Thu, 01 Jan 1970 00:00:00 GMT",
11
- "liveSassCompile.settings.autoprefix":[]
11
+ "liveSassCompile.settings.autoprefix": []
12
12
  }, {
13
- "liveSassCompile.settings.formats": [ //Sassの出力内容の設定
13
+ "liveSassCompile.settings.formats": [{
14
- {
15
- "format": "expanded", //nested、compact、compressedのどれかを選ぶ
14
+ "format": "expanded",
16
- "extensionName": ".css", //style.cssとして出力
15
+ "extensionName": ".css",
17
- "savePath": "/css" //cssフォルダの中にstyle.cssを出力
16
+ "savePath": "/css"
18
- }
19
- ],
17
+ }],
20
- "liveSassCompile.settings.excludeList": [
18
+ "liveSassCompile.settings.excludeList": [
21
19
 
22
- //対象外とするフォルダを指定
23
- "**/node_modules/**",
20
+ "**/node_modules/**",
24
- ".vscode/**",
21
+ ".vscode/**",
25
- ".history/**"
22
+ ".history/**"
26
- ],
23
+ ],
27
- "liveSassCompile.settings.autoprefix": [ //ベンダープレフィックスの指定
24
+ "liveSassCompile.settings.autoprefix": [
28
- "last 2 versions",
25
+ "last 2 versions",
29
- "ie >= 11",
26
+ "ie >= 11",
30
- "Android >= 4",
27
+ "Android >= 4",
31
- "ios_saf >= 8"
28
+ "ios_saf >= 8"
32
- ],
29
+ ],
33
30
 
34
- "editor.tabSize": 1,
31
+ "editor.tabSize": 1,
35
- "editor.detectIndentation": false,
32
+ "editor.detectIndentation": false,
36
- "liveServer.settings.ChromeDebuggingAttachment": false
33
+ "liveServer.settings.ChromeDebuggingAttachment": false
37
34
  }]
38
35
  ```