質問編集履歴

2

コード追加

2020/05/20 12:35

投稿

fuku-chann
fuku-chann

スコア82

test CHANGED
File without changes
test CHANGED
@@ -75,3 +75,37 @@
75
75
 
76
76
 
77
77
  [Bad message: Cannot launch program 'c:...'; setting the 'outFiles' attribute might help. #28257](https://github.com/microsoft/vscode/issues/28257)
78
+
79
+
80
+
81
+ ```cmd
82
+
83
+ # Prepare the project directory
84
+
85
+ mkdir generator && cd generator
86
+
87
+ # Install its dependency
88
+
89
+ npm install csv-generate
90
+
91
+ # Write a sample module
92
+
93
+ cat > generator.js <<JS
94
+
95
+ // Require the csv module
96
+
97
+ const generate = require('csv-generate')
98
+
99
+ // Print 10 records
100
+
101
+ generate({length: 10}).pipe(process.stdout)
102
+
103
+ JS
104
+
105
+ # Execute the module
106
+
107
+ node generator.js
108
+
109
+ ```
110
+
111
+ [CSV and object generator](https://csv.js.org/generate/)

1

加筆

2020/05/20 12:35

投稿

fuku-chann
fuku-chann

スコア82

test CHANGED
File without changes
test CHANGED
@@ -69,3 +69,9 @@
69
69
  }
70
70
 
71
71
  ```
72
+
73
+ 下記の内容が類似していると思い、launch.jsonの最後の行の"program": "${work...を削除したところ、エラーが無くなりましたが、依然としてCSVファイルは生成されません。なにか根本的に間違っている部分があるのでしょうか。。。
74
+
75
+
76
+
77
+ [Bad message: Cannot launch program 'c:...'; setting the 'outFiles' attribute might help. #28257](https://github.com/microsoft/vscode/issues/28257)