質問編集履歴

1

tsconfig.jsonの書き足し

2019/03/19 03:27

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -220,6 +220,38 @@
220
220
 
221
221
 
222
222
 
223
+ tsconfig.json
224
+
225
+ ```JSON
226
+
227
+ {
228
+
229
+ "compilerOptions": {
230
+
231
+ "target": "es5",
232
+
233
+ "module": "es2015",
234
+
235
+ "strict": true,
236
+
237
+ "moduleResolution": "node",
238
+
239
+ "experimentalDecorators":true,
240
+
241
+ "allowJs": true,
242
+
243
+ "rootDir": ".",
244
+
245
+ "outDir": "./dist/"
246
+
247
+ }
248
+
249
+ }
250
+
251
+ ```
252
+
253
+
254
+
223
255
  出ているエラー
224
256
 
225
257
  ```