質問編集履歴

1

tsconfig.jsonの内容を追記しました。

2020/06/01 13:26

投稿

untyan
untyan

スコア3

test CHANGED
File without changes
test CHANGED
@@ -74,6 +74,92 @@
74
74
 
75
75
 
76
76
 
77
+ 追記:tsconfig.json
78
+
79
+ ```html
80
+
81
+ {
82
+
83
+ "compilerOptions":{
84
+
85
+ "target": "es5" ,
86
+
87
+ "module": "esnext" ,
88
+
89
+ "lib": [
90
+
91
+ "esnext",
92
+
93
+ "dom"
94
+
95
+ ] ,
96
+
97
+ "baseUrl": "./src",
98
+
99
+ "outDir": "./lib-ts",
100
+
101
+ "declaration": true,
102
+
103
+ "sourceMap": true,
104
+
105
+ "allowJs": false,
106
+
107
+ "forceConsistentCasingInFileNames": true,
108
+
109
+ "allowSyntheticDefaultImports": false,
110
+
111
+ "moduleResolution": "node",
112
+
113
+ "strict": true,
114
+
115
+ "alwaysStrict": true,
116
+
117
+ "noImplicitReturns": true,
118
+
119
+ "noFallthroughCasesInSwitch": false,
120
+
121
+ "noUnusedLocals": true,
122
+
123
+ "noUnusedParameters": true,
124
+
125
+ "preserveConstEnums": false,
126
+
127
+ },
128
+
129
+ "compileOnSave": true,
130
+
131
+ "include": [
132
+
133
+ "src/**/*"
134
+
135
+ ],
136
+
137
+ "exclude": [
138
+
139
+ ".git",
140
+
141
+ "node_modules",
142
+
143
+ "lib"
144
+
145
+ ]
146
+
147
+ }
148
+
149
+ "typedocOptions": {
150
+
151
+ "name": "test_npm",
152
+
153
+ "mode": "file",
154
+
155
+ "out": "./docs"
156
+
157
+ }
158
+
159
+ ```
160
+
161
+
162
+
77
163
  ### 試したこと
78
164
 
79
165