-
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
cc8165c
commit e4478d4
Showing
49 changed files
with
360 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
10 changes: 10 additions & 0 deletions
10
src/080-configuring-typescript/200-project-references.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,10 @@ | ||
{ | ||
"name": "exercise", | ||
"version": "1.0.0", | ||
"main": "index.js", | ||
"scripts": { | ||
"dev": "run-p dev:*", | ||
"dev:client": "tsc --project ./src/client/tsconfig.json --watch", | ||
"dev:server": "tsc --project ./src/server/tsconfig.json --watch" | ||
} | ||
} |
4 changes: 4 additions & 0 deletions
4
src/080-configuring-typescript/200-project-references.problem/src/client/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,4 @@ | ||
document.addEventListener("DOMContentLoaded", () => { | ||
const app = document.querySelector("#app")!; | ||
app.innerHTML = "Hello World!"; | ||
}); |
10 changes: 10 additions & 0 deletions
10
src/080-configuring-typescript/200-project-references.problem/src/client/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,10 @@ | ||
{ | ||
"extends": "../../tsconfig.base.json", | ||
"compilerOptions": { | ||
"lib": [ | ||
"ES2022", | ||
"DOM", | ||
"DOM.Iterable" | ||
] | ||
}, | ||
} |
2 changes: 2 additions & 0 deletions
2
src/080-configuring-typescript/200-project-references.problem/src/server/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,2 @@ | ||
// @ts-expect-error | ||
document; |
8 changes: 8 additions & 0 deletions
8
src/080-configuring-typescript/200-project-references.problem/src/server/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,8 @@ | ||
{ | ||
"extends": "../../tsconfig.base.json", | ||
"compilerOptions": { | ||
"lib": [ | ||
"ES2022" | ||
] | ||
}, | ||
} |
12 changes: 12 additions & 0 deletions
12
src/080-configuring-typescript/200-project-references.problem/tsconfig.base.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,12 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "ES2022", | ||
"module": "ESNext", | ||
"moduleResolution": "Bundler", | ||
"esModuleInterop": true, | ||
"noEmit": true, | ||
"strict": true, | ||
"skipLibCheck": true, | ||
"isolatedModules": true, | ||
}, | ||
} |
8 changes: 8 additions & 0 deletions
8
src/080-configuring-typescript/200-project-references.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,8 @@ | ||
{ | ||
"name": "exercise", | ||
"version": "1.0.0", | ||
"main": "index.js", | ||
"scripts": { | ||
"dev": "tsc -b --watch" | ||
} | ||
} |
5 changes: 5 additions & 0 deletions
5
src/080-configuring-typescript/200-project-references.solution.1/pnpm-lock.yaml
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
src/080-configuring-typescript/200-project-references.solution.1/src/client/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,4 @@ | ||
document.addEventListener("DOMContentLoaded", () => { | ||
const app = document.querySelector("#app")!; | ||
app.innerHTML = "Hello World!"; | ||
}); |
10 changes: 10 additions & 0 deletions
10
src/080-configuring-typescript/200-project-references.solution.1/src/client/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,10 @@ | ||
{ | ||
"extends": "../../tsconfig.base.json", | ||
"compilerOptions": { | ||
"lib": [ | ||
"ES2022", | ||
"DOM", | ||
"DOM.Iterable" | ||
] | ||
}, | ||
} |
2 changes: 2 additions & 0 deletions
2
src/080-configuring-typescript/200-project-references.solution.1/src/server/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,2 @@ | ||
// @ts-expect-error | ||
document; |
8 changes: 8 additions & 0 deletions
8
src/080-configuring-typescript/200-project-references.solution.1/src/server/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,8 @@ | ||
{ | ||
"extends": "../../tsconfig.base.json", | ||
"compilerOptions": { | ||
"lib": [ | ||
"ES2022" | ||
] | ||
}, | ||
} |
12 changes: 12 additions & 0 deletions
12
src/080-configuring-typescript/200-project-references.solution.1/tsconfig.base.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,12 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "ES2022", | ||
"module": "ESNext", | ||
"moduleResolution": "Bundler", | ||
"esModuleInterop": true, | ||
"noEmit": true, | ||
"strict": true, | ||
"skipLibCheck": true, | ||
"isolatedModules": true, | ||
}, | ||
} |
11 changes: 11 additions & 0 deletions
11
src/080-configuring-typescript/200-project-references.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,11 @@ | ||
{ | ||
"references": [ | ||
{ | ||
"path": "./src/client/tsconfig.json" | ||
}, | ||
{ | ||
"path": "./src/server/tsconfig.json" | ||
} | ||
], | ||
"files": [] | ||
} |
8 changes: 8 additions & 0 deletions
8
src/080-configuring-typescript/200-project-references.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,8 @@ | ||
{ | ||
"name": "exercise", | ||
"version": "1.0.0", | ||
"main": "index.js", | ||
"scripts": { | ||
"dev": "tsc -b --watch" | ||
} | ||
} |
5 changes: 5 additions & 0 deletions
5
src/080-configuring-typescript/200-project-references.solution.2/pnpm-lock.yaml
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
src/080-configuring-typescript/200-project-references.solution.2/src/client/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,4 @@ | ||
document.addEventListener("DOMContentLoaded", () => { | ||
const app = document.querySelector("#app")!; | ||
app.innerHTML = "Hello World!"; | ||
}); |
2 changes: 2 additions & 0 deletions
2
src/080-configuring-typescript/200-project-references.solution.2/src/server/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,2 @@ | ||
// @ts-expect-error | ||
document; |
12 changes: 12 additions & 0 deletions
12
src/080-configuring-typescript/200-project-references.solution.2/tsconfig.base.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,12 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "ES2022", | ||
"module": "ESNext", | ||
"moduleResolution": "Bundler", | ||
"esModuleInterop": true, | ||
"noEmit": true, | ||
"strict": true, | ||
"skipLibCheck": true, | ||
"isolatedModules": true, | ||
}, | ||
} |
13 changes: 13 additions & 0 deletions
13
src/080-configuring-typescript/200-project-references.solution.2/tsconfig.client.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,13 @@ | ||
{ | ||
"extends": "./tsconfig.base.json", | ||
"compilerOptions": { | ||
"lib": [ | ||
"ES2022", | ||
"DOM", | ||
"DOM.Iterable" | ||
] | ||
}, | ||
"include": [ | ||
"src/client" | ||
] | ||
} |
11 changes: 11 additions & 0 deletions
11
src/080-configuring-typescript/200-project-references.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,11 @@ | ||
{ | ||
"references": [ | ||
{ | ||
"path": "./tsconfig.client.json" | ||
}, | ||
{ | ||
"path": "./tsconfig.server.json" | ||
} | ||
], | ||
"files": [] | ||
} |
11 changes: 11 additions & 0 deletions
11
src/080-configuring-typescript/200-project-references.solution.2/tsconfig.server.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 @@ | ||
{ | ||
"extends": "./tsconfig.base.json", | ||
"compilerOptions": { | ||
"lib": [ | ||
"ES2022" | ||
] | ||
}, | ||
"include": [ | ||
"src/server" | ||
] | ||
} |
12 changes: 12 additions & 0 deletions
12
src/080-configuring-typescript/200-project-references.solution.3/.config/tsconfig.base.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,12 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "ES2022", | ||
"module": "ESNext", | ||
"moduleResolution": "Bundler", | ||
"esModuleInterop": true, | ||
"noEmit": true, | ||
"strict": true, | ||
"skipLibCheck": true, | ||
"isolatedModules": true, | ||
}, | ||
} |
13 changes: 13 additions & 0 deletions
13
...080-configuring-typescript/200-project-references.solution.3/.config/tsconfig.client.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,13 @@ | ||
{ | ||
"extends": "./tsconfig.base.json", | ||
"compilerOptions": { | ||
"lib": [ | ||
"ES2022", | ||
"DOM", | ||
"DOM.Iterable" | ||
] | ||
}, | ||
"include": [ | ||
"../src/client" | ||
] | ||
} |
11 changes: 11 additions & 0 deletions
11
...080-configuring-typescript/200-project-references.solution.3/.config/tsconfig.server.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 @@ | ||
{ | ||
"extends": "./tsconfig.base.json", | ||
"compilerOptions": { | ||
"lib": [ | ||
"ES2022" | ||
] | ||
}, | ||
"include": [ | ||
"../src/server" | ||
] | ||
} |
8 changes: 8 additions & 0 deletions
8
src/080-configuring-typescript/200-project-references.solution.3/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,8 @@ | ||
{ | ||
"name": "exercise", | ||
"version": "1.0.0", | ||
"main": "index.js", | ||
"scripts": { | ||
"dev": "tsc -b --watch" | ||
} | ||
} |
5 changes: 5 additions & 0 deletions
5
src/080-configuring-typescript/200-project-references.solution.3/pnpm-lock.yaml
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
src/080-configuring-typescript/200-project-references.solution.3/src/client/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,4 @@ | ||
document.addEventListener("DOMContentLoaded", () => { | ||
const app = document.querySelector("#app")!; | ||
app.innerHTML = "Hello World!"; | ||
}); |
2 changes: 2 additions & 0 deletions
2
src/080-configuring-typescript/200-project-references.solution.3/src/server/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,2 @@ | ||
// @ts-expect-error | ||
document; |
11 changes: 11 additions & 0 deletions
11
src/080-configuring-typescript/200-project-references.solution.3/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,11 @@ | ||
{ | ||
"references": [ | ||
{ | ||
"path": "./.config/tsconfig.client.json" | ||
}, | ||
{ | ||
"path": "./.config/tsconfig.server.json" | ||
} | ||
], | ||
"files": [] | ||
} |
Empty file.
8 changes: 8 additions & 0 deletions
8
src/080-configuring-typescript/200.5-incremental-mode.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,8 @@ | ||
{ | ||
"name": "exercise", | ||
"version": "1.0.0", | ||
"main": "index.js", | ||
"scripts": { | ||
"dev": "tsc -b --watch" | ||
} | ||
} |
5 changes: 5 additions & 0 deletions
5
src/080-configuring-typescript/200.5-incremental-mode.problem/pnpm-lock.yaml
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
src/080-configuring-typescript/200.5-incremental-mode.problem/src/client/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,4 @@ | ||
document.addEventListener("DOMContentLoaded", () => { | ||
const app = document.querySelector("#app")!; | ||
app.innerHTML = "Hello World!"; | ||
}); |
10 changes: 10 additions & 0 deletions
10
src/080-configuring-typescript/200.5-incremental-mode.problem/src/client/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,10 @@ | ||
{ | ||
"extends": "../../tsconfig.base.json", | ||
"compilerOptions": { | ||
"lib": [ | ||
"ES2022", | ||
"DOM", | ||
"DOM.Iterable" | ||
] | ||
}, | ||
} |
2 changes: 2 additions & 0 deletions
2
src/080-configuring-typescript/200.5-incremental-mode.problem/src/server/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,2 @@ | ||
// @ts-expect-error | ||
document; |
8 changes: 8 additions & 0 deletions
8
src/080-configuring-typescript/200.5-incremental-mode.problem/src/server/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,8 @@ | ||
{ | ||
"extends": "../../tsconfig.base.json", | ||
"compilerOptions": { | ||
"lib": [ | ||
"ES2022" | ||
] | ||
}, | ||
} |
12 changes: 12 additions & 0 deletions
12
src/080-configuring-typescript/200.5-incremental-mode.problem/tsconfig.base.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,12 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "ES2022", | ||
"module": "ESNext", | ||
"moduleResolution": "Bundler", | ||
"esModuleInterop": true, | ||
"noEmit": true, | ||
"strict": true, | ||
"skipLibCheck": true, | ||
"isolatedModules": true, | ||
}, | ||
} |
11 changes: 11 additions & 0 deletions
11
src/080-configuring-typescript/200.5-incremental-mode.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,11 @@ | ||
{ | ||
"references": [ | ||
{ | ||
"path": "./src/client/tsconfig.json" | ||
}, | ||
{ | ||
"path": "./src/server/tsconfig.json" | ||
} | ||
], | ||
"files": [] | ||
} |
1 change: 1 addition & 0 deletions
1
src/080-configuring-typescript/200.5-incremental-mode.solution/.gitignore
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 @@ | ||
*.tsbuildinfo |
8 changes: 8 additions & 0 deletions
8
src/080-configuring-typescript/200.5-incremental-mode.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,8 @@ | ||
{ | ||
"name": "exercise", | ||
"version": "1.0.0", | ||
"main": "index.js", | ||
"scripts": { | ||
"dev": "tsc -b --watch" | ||
} | ||
} |
5 changes: 5 additions & 0 deletions
5
src/080-configuring-typescript/200.5-incremental-mode.solution/pnpm-lock.yaml
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
src/080-configuring-typescript/200.5-incremental-mode.solution/src/client/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,4 @@ | ||
document.addEventListener("DOMContentLoaded", () => { | ||
const app = document.querySelector("#app")!; | ||
app.innerHTML = "Hello World!"; | ||
}); |
10 changes: 10 additions & 0 deletions
10
src/080-configuring-typescript/200.5-incremental-mode.solution/src/client/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,10 @@ | ||
{ | ||
"extends": "../../tsconfig.base.json", | ||
"compilerOptions": { | ||
"lib": [ | ||
"ES2022", | ||
"DOM", | ||
"DOM.Iterable" | ||
] | ||
}, | ||
} |
2 changes: 2 additions & 0 deletions
2
src/080-configuring-typescript/200.5-incremental-mode.solution/src/server/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,2 @@ | ||
// @ts-expect-error | ||
document; |
Oops, something went wrong.