-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
963ed14
commit dba8d1b
Showing
56 changed files
with
441 additions
and
0 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
Empty file.
17 changes: 17 additions & 0 deletions
17
src/062-the-global-namespace/167-ambient-context-and-declare-const.problem/helpers.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
type Expect<T extends true> = T; | ||
type Equal<X, Y> = (<T>() => T extends X ? 1 : 2) extends <T>() => T extends Y | ||
? 1 | ||
: 2 | ||
? true | ||
: false; | ||
|
||
/** | ||
* Checks that Y is assignable to X. | ||
* | ||
* For instance, `Extends<string, 'a'>` is true. This is because | ||
* 'a' can be passed to a function which expects a string. | ||
* | ||
* But `Extends<'a', string>` is false. This is because a string | ||
* CANNOT be passed to a function which expects 'a'. | ||
*/ | ||
type Extends<X, Y> = Y extends X ? true : false; |
11 changes: 11 additions & 0 deletions
11
src/062-the-global-namespace/167-ambient-context-and-declare-const.problem/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"name": "117-const-enums.explainer", | ||
"version": "1.0.0", | ||
"description": "", | ||
"main": "index.js", | ||
"scripts": { | ||
"dev": "tsc --watch" | ||
}, | ||
"keywords": [], | ||
"author": "Matt Pocock" | ||
} |
3 changes: 3 additions & 0 deletions
3
src/062-the-global-namespace/167-ambient-context-and-declare-const.problem/src/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
const state = DEBUG.getState(); | ||
|
||
type test = Expect<Equal<typeof state, { id: string }>>; |
14 changes: 14 additions & 0 deletions
14
src/062-the-global-namespace/167-ambient-context-and-declare-const.problem/tsconfig.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "es2020", | ||
"module": "ESNext", | ||
"moduleResolution": "Bundler", | ||
"esModuleInterop": true, | ||
"declaration": true, | ||
"skipLibCheck": true, | ||
"noEmit": true, | ||
"forceConsistentCasingInFileNames": true, | ||
"strict": true, | ||
"moduleDetection": "force" | ||
}, | ||
} |
Empty file.
17 changes: 17 additions & 0 deletions
17
src/062-the-global-namespace/167-ambient-context-and-declare-const.solution/helpers.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
type Expect<T extends true> = T; | ||
type Equal<X, Y> = (<T>() => T extends X ? 1 : 2) extends <T>() => T extends Y | ||
? 1 | ||
: 2 | ||
? true | ||
: false; | ||
|
||
/** | ||
* Checks that Y is assignable to X. | ||
* | ||
* For instance, `Extends<string, 'a'>` is true. This is because | ||
* 'a' can be passed to a function which expects a string. | ||
* | ||
* But `Extends<'a', string>` is false. This is because a string | ||
* CANNOT be passed to a function which expects 'a'. | ||
*/ | ||
type Extends<X, Y> = Y extends X ? true : false; |
11 changes: 11 additions & 0 deletions
11
src/062-the-global-namespace/167-ambient-context-and-declare-const.solution/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"name": "117-const-enums.explainer", | ||
"version": "1.0.0", | ||
"description": "", | ||
"main": "index.js", | ||
"scripts": { | ||
"dev": "tsc --watch" | ||
}, | ||
"keywords": [], | ||
"author": "Matt Pocock" | ||
} |
7 changes: 7 additions & 0 deletions
7
src/062-the-global-namespace/167-ambient-context-and-declare-const.solution/src/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
declare const DEBUG: { | ||
getState(): { id: string }; | ||
}; | ||
|
||
const state = DEBUG.getState(); | ||
|
||
type test = Expect<Equal<typeof state, { id: string }>>; |
14 changes: 14 additions & 0 deletions
14
src/062-the-global-namespace/167-ambient-context-and-declare-const.solution/tsconfig.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "es2020", | ||
"module": "ESNext", | ||
"moduleResolution": "Bundler", | ||
"esModuleInterop": true, | ||
"declaration": true, | ||
"skipLibCheck": true, | ||
"noEmit": true, | ||
"forceConsistentCasingInFileNames": true, | ||
"strict": true, | ||
"moduleDetection": "force" | ||
}, | ||
} |
Empty file.
17 changes: 17 additions & 0 deletions
17
src/062-the-global-namespace/168-declare-global.problem/helpers.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
type Expect<T extends true> = T; | ||
type Equal<X, Y> = (<T>() => T extends X ? 1 : 2) extends <T>() => T extends Y | ||
? 1 | ||
: 2 | ||
? true | ||
: false; | ||
|
||
/** | ||
* Checks that Y is assignable to X. | ||
* | ||
* For instance, `Extends<string, 'a'>` is true. This is because | ||
* 'a' can be passed to a function which expects a string. | ||
* | ||
* But `Extends<'a', string>` is false. This is because a string | ||
* CANNOT be passed to a function which expects 'a'. | ||
*/ | ||
type Extends<X, Y> = Y extends X ? true : false; |
11 changes: 11 additions & 0 deletions
11
src/062-the-global-namespace/168-declare-global.problem/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"name": "117-const-enums.explainer", | ||
"version": "1.0.0", | ||
"description": "", | ||
"main": "index.js", | ||
"scripts": { | ||
"dev": "tsc --watch" | ||
}, | ||
"keywords": [], | ||
"author": "Matt Pocock" | ||
} |
7 changes: 7 additions & 0 deletions
7
src/062-the-global-namespace/168-declare-global.problem/src/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
declare const DEBUG: { | ||
getState(): { id: string }; | ||
}; | ||
|
||
const state = DEBUG.getState(); | ||
|
||
type test = Expect<Equal<typeof state, { id: string }>>; |
3 changes: 3 additions & 0 deletions
3
src/062-the-global-namespace/168-declare-global.problem/src/other-file.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
const state = DEBUG.getState(); | ||
|
||
type test = Expect<Equal<typeof state, { id: string }>>; |
14 changes: 14 additions & 0 deletions
14
src/062-the-global-namespace/168-declare-global.problem/tsconfig.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "es2020", | ||
"module": "ESNext", | ||
"moduleResolution": "Bundler", | ||
"esModuleInterop": true, | ||
"declaration": true, | ||
"skipLibCheck": true, | ||
"noEmit": true, | ||
"forceConsistentCasingInFileNames": true, | ||
"strict": true, | ||
"moduleDetection": "force" | ||
}, | ||
} |
17 changes: 17 additions & 0 deletions
17
src/062-the-global-namespace/168-declare-global.solution.1/helpers.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
type Expect<T extends true> = T; | ||
type Equal<X, Y> = (<T>() => T extends X ? 1 : 2) extends <T>() => T extends Y | ||
? 1 | ||
: 2 | ||
? true | ||
: false; | ||
|
||
/** | ||
* Checks that Y is assignable to X. | ||
* | ||
* For instance, `Extends<string, 'a'>` is true. This is because | ||
* 'a' can be passed to a function which expects a string. | ||
* | ||
* But `Extends<'a', string>` is false. This is because a string | ||
* CANNOT be passed to a function which expects 'a'. | ||
*/ | ||
type Extends<X, Y> = Y extends X ? true : false; |
11 changes: 11 additions & 0 deletions
11
src/062-the-global-namespace/168-declare-global.solution.1/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"name": "117-const-enums.explainer", | ||
"version": "1.0.0", | ||
"description": "", | ||
"main": "index.js", | ||
"scripts": { | ||
"dev": "tsc --watch" | ||
}, | ||
"keywords": [], | ||
"author": "Matt Pocock" | ||
} |
9 changes: 9 additions & 0 deletions
9
src/062-the-global-namespace/168-declare-global.solution.1/src/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
declare global { | ||
const DEBUG: { | ||
getState(): { id: string }; | ||
}; | ||
} | ||
|
||
const state = DEBUG.getState(); | ||
|
||
type test = Expect<Equal<typeof state, { id: string }>>; |
3 changes: 3 additions & 0 deletions
3
src/062-the-global-namespace/168-declare-global.solution.1/src/other-file.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
const state = DEBUG.getState(); | ||
|
||
type test = Expect<Equal<typeof state, { id: string }>>; |
14 changes: 14 additions & 0 deletions
14
src/062-the-global-namespace/168-declare-global.solution.1/tsconfig.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "es2020", | ||
"module": "ESNext", | ||
"moduleResolution": "Bundler", | ||
"esModuleInterop": true, | ||
"declaration": true, | ||
"skipLibCheck": true, | ||
"noEmit": true, | ||
"forceConsistentCasingInFileNames": true, | ||
"strict": true, | ||
"moduleDetection": "force" | ||
}, | ||
} |
17 changes: 17 additions & 0 deletions
17
src/062-the-global-namespace/168-declare-global.solution.2/helpers.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
type Expect<T extends true> = T; | ||
type Equal<X, Y> = (<T>() => T extends X ? 1 : 2) extends <T>() => T extends Y | ||
? 1 | ||
: 2 | ||
? true | ||
: false; | ||
|
||
/** | ||
* Checks that Y is assignable to X. | ||
* | ||
* For instance, `Extends<string, 'a'>` is true. This is because | ||
* 'a' can be passed to a function which expects a string. | ||
* | ||
* But `Extends<'a', string>` is false. This is because a string | ||
* CANNOT be passed to a function which expects 'a'. | ||
*/ | ||
type Extends<X, Y> = Y extends X ? true : false; |
11 changes: 11 additions & 0 deletions
11
src/062-the-global-namespace/168-declare-global.solution.2/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"name": "117-const-enums.explainer", | ||
"version": "1.0.0", | ||
"description": "", | ||
"main": "index.js", | ||
"scripts": { | ||
"dev": "tsc --watch" | ||
}, | ||
"keywords": [], | ||
"author": "Matt Pocock" | ||
} |
3 changes: 3 additions & 0 deletions
3
src/062-the-global-namespace/168-declare-global.solution.2/src/debug.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
declare const DEBUG: { | ||
getState(): { id: string }; | ||
}; |
3 changes: 3 additions & 0 deletions
3
src/062-the-global-namespace/168-declare-global.solution.2/src/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
const state = DEBUG.getState(); | ||
|
||
type test = Expect<Equal<typeof state, { id: string }>>; |
3 changes: 3 additions & 0 deletions
3
src/062-the-global-namespace/168-declare-global.solution.2/src/other-file.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
const state = DEBUG.getState(); | ||
|
||
type test = Expect<Equal<typeof state, { id: string }>>; |
14 changes: 14 additions & 0 deletions
14
src/062-the-global-namespace/168-declare-global.solution.2/tsconfig.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "es2020", | ||
"module": "ESNext", | ||
"moduleResolution": "Bundler", | ||
"esModuleInterop": true, | ||
"declaration": true, | ||
"skipLibCheck": true, | ||
"noEmit": true, | ||
"forceConsistentCasingInFileNames": true, | ||
"strict": true, | ||
"moduleDetection": "force" | ||
}, | ||
} |
Empty file.
Empty file.
Empty file removed
0
src/062-the-global-namespace/170-declare-global-or-declaration-file.solution.ts
Empty file.
Empty file.
17 changes: 17 additions & 0 deletions
17
src/062-the-global-namespace/173-modifying-window.problem/helpers.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
type Expect<T extends true> = T; | ||
type Equal<X, Y> = (<T>() => T extends X ? 1 : 2) extends <T>() => T extends Y | ||
? 1 | ||
: 2 | ||
? true | ||
: false; | ||
|
||
/** | ||
* Checks that Y is assignable to X. | ||
* | ||
* For instance, `Extends<string, 'a'>` is true. This is because | ||
* 'a' can be passed to a function which expects a string. | ||
* | ||
* But `Extends<'a', string>` is false. This is because a string | ||
* CANNOT be passed to a function which expects 'a'. | ||
*/ | ||
type Extends<X, Y> = Y extends X ? true : false; |
11 changes: 11 additions & 0 deletions
11
src/062-the-global-namespace/173-modifying-window.problem/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"name": "117-const-enums.explainer", | ||
"version": "1.0.0", | ||
"description": "", | ||
"main": "index.js", | ||
"scripts": { | ||
"dev": "tsc --watch" | ||
}, | ||
"keywords": [], | ||
"author": "Matt Pocock" | ||
} |
3 changes: 3 additions & 0 deletions
3
src/062-the-global-namespace/173-modifying-window.problem/src/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
const state = window.DEBUG.getState(); | ||
|
||
type test = Expect<Equal<typeof state, { id: string }>>; |
14 changes: 14 additions & 0 deletions
14
src/062-the-global-namespace/173-modifying-window.problem/tsconfig.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "es2020", | ||
"module": "ESNext", | ||
"moduleResolution": "Bundler", | ||
"esModuleInterop": true, | ||
"declaration": true, | ||
"skipLibCheck": true, | ||
"noEmit": true, | ||
"forceConsistentCasingInFileNames": true, | ||
"strict": true, | ||
"moduleDetection": "force" | ||
}, | ||
} |
Empty file.
17 changes: 17 additions & 0 deletions
17
src/062-the-global-namespace/173-modifying-window.solution/helpers.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
type Expect<T extends true> = T; | ||
type Equal<X, Y> = (<T>() => T extends X ? 1 : 2) extends <T>() => T extends Y | ||
? 1 | ||
: 2 | ||
? true | ||
: false; | ||
|
||
/** | ||
* Checks that Y is assignable to X. | ||
* | ||
* For instance, `Extends<string, 'a'>` is true. This is because | ||
* 'a' can be passed to a function which expects a string. | ||
* | ||
* But `Extends<'a', string>` is false. This is because a string | ||
* CANNOT be passed to a function which expects 'a'. | ||
*/ | ||
type Extends<X, Y> = Y extends X ? true : false; |
11 changes: 11 additions & 0 deletions
11
src/062-the-global-namespace/173-modifying-window.solution/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"name": "117-const-enums.explainer", | ||
"version": "1.0.0", | ||
"description": "", | ||
"main": "index.js", | ||
"scripts": { | ||
"dev": "tsc --watch" | ||
}, | ||
"keywords": [], | ||
"author": "Matt Pocock" | ||
} |
3 changes: 3 additions & 0 deletions
3
src/062-the-global-namespace/173-modifying-window.solution/src/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
const state = window.DEBUG.getState(); | ||
|
||
type test = Expect<Equal<typeof state, { id: string }>>; |
5 changes: 5 additions & 0 deletions
5
src/062-the-global-namespace/173-modifying-window.solution/src/window.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
interface Window { | ||
DEBUG: { | ||
getState(): { id: string }; | ||
}; | ||
} |
14 changes: 14 additions & 0 deletions
14
src/062-the-global-namespace/173-modifying-window.solution/tsconfig.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "es2020", | ||
"module": "ESNext", | ||
"moduleResolution": "Bundler", | ||
"esModuleInterop": true, | ||
"declaration": true, | ||
"skipLibCheck": true, | ||
"noEmit": true, | ||
"forceConsistentCasingInFileNames": true, | ||
"strict": true, | ||
"moduleDetection": "force" | ||
}, | ||
} |
Empty file.
Empty file.
Empty file.
Oops, something went wrong.