質問編集履歴

2

修正

2022/07/06 03:54

投稿

yuki_90453
yuki_90453

スコア326

test CHANGED
File without changes
test CHANGED
@@ -37,4 +37,61 @@
37
37
 
38
38
  ## 追記
39
39
  下記を試しましたが、エラーは解消されませんでした。
40
- 1. `rm -rf package-lock.json node_modules/`を行い、`npm install`
40
+ `rm -rf package-lock.json node_modules/`を行い、`npm install`
41
+
42
+ webpack
43
+ ```Javascript
44
+ import { Configuration } from 'webpack';
45
+ const AwsSamPlugin = require("aws-sam-webpack-plugin");
46
+ const awsSamPlugin = new AwsSamPlugin();
47
+
48
+ const config: Configuration = {
49
+ entry: awsSamPlugin.entry(),
50
+ output: {
51
+ filename: "[name]/app.js",
52
+ libraryTarget: "commonjs2",
53
+ path: __dirname + "/.aws-sam/build/"
54
+ },
55
+ devtool: "source-map",
56
+ resolve: {
57
+ extensions: [".ts", ".js", ".json"]
58
+ },
59
+ target: "node",
60
+ externals: process.env.NODE_ENV === "development"
61
+ ? ["chrome-aws-lambda","@google-cloud/bigquery", "sharp"]
62
+ : ["aws-sdk","chrome-aws-lambda","@google-cloud/bigquery","sharp"],
63
+ mode: process.env.NODE_ENV || "production",
64
+ module: {
65
+ rules: [
66
+ {
67
+ test: /\.tsx?$/,
68
+ loader: "ts-loader",
69
+ }
70
+ ]
71
+ },
72
+ plugins: [
73
+ awsSamPlugin
74
+ ],
75
+ }
76
+
77
+ export default config
78
+ ```
79
+
80
+ tsconfig
81
+ ```JSON
82
+ {
83
+ "compilerOptions": {
84
+ "target": "es2019",
85
+ "module": "commonjs",
86
+ "allowJs": true,
87
+ "strict": true,
88
+ "esModuleInterop": true,
89
+ "rootDir": ".",
90
+ "outDir": "./built",
91
+ "sourceMap": true
92
+ },
93
+ "include": [
94
+ "./src/**/*"
95
+ ],
96
+ }
97
+ ```

1

やったこと

2022/07/06 02:08

投稿

yuki_90453
yuki_90453

スコア326

test CHANGED
File without changes
test CHANGED
@@ -34,3 +34,7 @@
34
34
  検索していますが、axiosでform-data.jsが見つからないというケースは見当たらず困っております。
35
35
 
36
36
  怪しい部分などご指摘お願い致します。
37
+
38
+ ## 追記
39
+ 下記を試しましたが、エラーは解消されませんでした。
40
+ 1. `rm -rf package-lock.json node_modules/`を行い、`npm install`