Skip to content

Commit

Permalink
2023-09-18T15:22:57.308Z
Browse files Browse the repository at this point in the history
  • Loading branch information
mattpocock committed Sep 18, 2023
1 parent 5e54258 commit f64760a
Show file tree
Hide file tree
Showing 306 changed files with 97 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"useDefineForClassFields": true,
"module": "ESNext",
"lib": [
"ES2020",
"ES2022",
"DOM",
"DOM.Iterable"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"useDefineForClassFields": true,
"module": "ESNext",
"lib": [
"ES2020",
"ES2022",
"DOM",
"DOM.Iterable"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"useDefineForClassFields": true,
"module": "ESNext",
"lib": [
"ES2020",
"ES2022",
"DOM",
"DOM.Iterable"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"useDefineForClassFields": true,
"module": "ESNext",
"lib": [
"ES2020",
"ES2022",
"DOM",
"DOM.Iterable"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"useDefineForClassFields": true,
"module": "ESNext",
"lib": [
"ES2020",
"ES2022",
"DOM",
"DOM.Iterable"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"useDefineForClassFields": true,
"module": "ESNext",
"lib": [
"ES2020",
"ES2022",
"DOM",
"DOM.Iterable"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"useDefineForClassFields": true,
"module": "ESNext",
"lib": [
"ES2020",
"ES2022",
"DOM",
"DOM.Iterable"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"useDefineForClassFields": true,
"module": "ESNext",
"lib": [
"ES2020",
"ES2022",
"DOM",
"DOM.Iterable"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"useDefineForClassFields": true,
"module": "ESNext",
"lib": [
"ES2020",
"ES2022",
"DOM",
"DOM.Iterable"
],
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
const str = "Hello, world!";

str.replaceAll("Hello", "Goodbye");
15 changes: 15 additions & 0 deletions src/065-types-you-dont-control/171-lib-d-ts.problem/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "ES5",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"esModuleInterop": true,
"outDir": "dist",
"rootDir": "src",
"strict": true,
"skipLibCheck": true,
"isolatedModules": true,
"moduleDetection": "force",
"verbatimModuleSyntax": true
},
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
const str = "Hello, world!";

str.replaceAll("Hello", "Goodbye");
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"esModuleInterop": true,
"outDir": "dist",
"rootDir": "src",
"strict": true,
"skipLibCheck": true,
"isolatedModules": true,
"moduleDetection": "force",
"verbatimModuleSyntax": true
},
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
const str = "Hello, world!";

str.replaceAll("Hello", "Goodbye");
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"compilerOptions": {
"target": "ES2022",
"lib": [
"ES2022",
],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"esModuleInterop": true,
"outDir": "dist",
"rootDir": "src",
"strict": true,
"skipLibCheck": true,
"isolatedModules": true,
"moduleDetection": "force",
"verbatimModuleSyntax": true
},
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"skipLibCheck": true,
"isolatedModules": true,
"lib": [
"ES2020",
"ES2022",
"DOM",
]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"skipLibCheck": true,
"isolatedModules": true,
"lib": [
"ES2020",
"ES2022",
"DOM",
]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"skipLibCheck": true,
"isolatedModules": true,
"lib": [
"ES2020",
"ES2022",
"DOM",
"DOM.Iterable"
]
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"skipLibCheck": true,
"isolatedModules": true,
"lib": [
"ES2020"
"ES2022"
]
},
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "exercise",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "tsc --watch"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "exercise",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "tsc --watch"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "exercise",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "tsc --watch"
}
}
Empty file.
Empty file.
Loading

0 comments on commit f64760a

Please sign in to comment.