Skip to content

Commit

Permalink
2023-09-12T16:19:02.540Z
Browse files Browse the repository at this point in the history
  • Loading branch information
mattpocock committed Sep 12, 2023
1 parent 7e0d1f9 commit 062c824
Show file tree
Hide file tree
Showing 85 changed files with 38 additions and 3 deletions.
6 changes: 5 additions & 1 deletion plan.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,8 @@ Import/export type

incremental
composite
lib: dom, lib: esnext
lib: dom, lib: es2022

useDefineForClassFields (https://twitter.com/heyImMapleLeaf/status/1701623837756993900)

Use suggestions here: https://twitter.com/mattpocockuk/status/1701619240686485799
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"target": "es2022",
"moduleDetection": "force",
"strict": true,
"noUncheckedIndexedAccess": true,
"verbatimModuleSyntax": true,
"allowJs": true,
"resolveJsonModule": true,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"compilerOptions": {
"target": "es2020",
"module": "ESNext",
"moduleResolution": "Bundler",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"isolatedModules": true,
"outDir": "../191-no-emit.solution/dist",
},
}
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"compilerOptions": {
"target": "es2020",
"module": "ESNext",
"moduleResolution": "Bundler",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"compilerOptions": {
"target": "es2020",
"module": "ESNext",
"moduleResolution": "Bundler",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"isolatedModules": true,
"outDir": "../192-module-resolution-bundler-or-nodenext.problem/dist",
},
}
Empty file.
Empty file.
Empty file.
Empty file.
3 changes: 3 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true
},
"include": [
"src"
Expand Down

0 comments on commit 062c824

Please sign in to comment.