Skip to content

Commit

Permalink
Add 2024 tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
typhonrt committed Jan 3, 2024
1 parent 701b764 commit d1806f5
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 0 deletions.
14 changes: 14 additions & 0 deletions config/tsconfig/2024/dom/tsconfig-docs.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"compilerOptions": {
"module": "es2022",
"target": "es2022",
"noImplicitAny": true,
"sourceMap": false,
"moduleResolution" : "Bundler",
"lib": ["DOM", "ES2023"],
"types": []
},
"include" : [
"../../../../.doc-gen/bundled/2024/dom/index.d.ts"
]
}
15 changes: 15 additions & 0 deletions config/tsconfig/2024/esm/tsconfig-docs.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"compilerOptions": {
"module": "es2022",
"target": "es2022",
"noImplicitAny": true,
"sourceMap": false,
"moduleResolution" : "Bundler",
"lib": ["ES2023"],
"types": [],
"skipLibCheck" : true
},
"include" : [
"../../../../.doc-gen/bundled/2024/esm/index.d.ts"
]
}
14 changes: 14 additions & 0 deletions config/tsconfig/2024/worker/tsconfig-docs.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"compilerOptions": {
"module": "es2022",
"target": "es2022",
"noImplicitAny": true,
"sourceMap": false,
"moduleResolution" : "Bundler",
"lib": ["ES2023", "WebWorker"],
"types": []
},
"include" : [
"../../../../.doc-gen/bundled/2024/worker/index.d.ts"
]
}

0 comments on commit d1806f5

Please sign in to comment.