Skip to content

Commit 0ed84be

Browse files
committed
feat: initial
0 parents  commit 0ed84be

File tree

4 files changed

+24
-0
lines changed

4 files changed

+24
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
package-lock.json

index.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import type { CompilerOptions } from "typescript";
2+
3+
export type { CompilerOptions };

package.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"name": "jsDocParsingMode-error-example",
3+
"version": "0.0.1",
4+
"devDependencies": {
5+
"typescript": "5.3.2"
6+
},
7+
"scripts": {
8+
"tsc": "tsc"
9+
}
10+
}

tsconfig.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"compilerOptions": {
3+
"exactOptionalPropertyTypes": true,
4+
"module": "nodenext",
5+
"strict": true,
6+
"target": "ESNext"
7+
},
8+
"include": ["./index.ts"]
9+
}

0 commit comments

Comments
 (0)