質問編集履歴
4
modify
test
CHANGED
File without changes
|
test
CHANGED
@@ -22,7 +22,7 @@
|
|
22
22
|
|
23
23
|
function readOnlyfy<T>(obj: T): DeeperReadonly<T> {
|
24
24
|
|
25
|
-
return obj as DeepReadonly<T>
|
25
|
+
return obj as DeeperReadonly<T>
|
26
26
|
|
27
27
|
}
|
28
28
|
|
3
modify
test
CHANGED
File without changes
|
test
CHANGED
@@ -14,7 +14,7 @@
|
|
14
14
|
|
15
15
|
type DeeperReadonly<T> = {
|
16
16
|
|
17
|
-
readonly [P in keyof T]: DeepReadonly<T[P]>
|
17
|
+
readonly [P in keyof T]: DeeperReadonly<T[P]>
|
18
18
|
|
19
19
|
}
|
20
20
|
|
2
modify
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
### 問題
|
2
2
|
|
3
|
-
以下のコードは無限にスタックが展開され到達不能となるコードですが
|
3
|
+
以下のコードは無限に再帰しスタックが展開され到達不能となるコードですが
|
4
4
|
|
5
5
|
私の環境ではエラーを表示してくれません
|
6
6
|
|
1
modify
test
CHANGED
File without changes
|
test
CHANGED
@@ -42,7 +42,7 @@
|
|
42
42
|
|
43
43
|
"target": "es2016",
|
44
44
|
|
45
|
-
"module": "commonjs",
|
45
|
+
"module": "commonjs",
|
46
46
|
|
47
47
|
"strict": true,
|
48
48
|
|