Skip to content

Commit 4baf1a9

Browse files
committed
chore: update target in tsconfig
Signed-off-by: Christian Stewart <[email protected]>
1 parent c3aac50 commit 4baf1a9

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@aptre/flex-layout",
33
"author": "Caplin Systems Ltd",
44
"description": "A multi-tab docking layout manager",
5-
"version": "0.3.0-beta.1",
5+
"version": "0.3.0-beta.2",
66
"license": "ISC",
77
"repository": {
88
"type": "git",

tsconfig.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,17 @@
44
"sourceMap": true,
55
"noImplicitAny": true,
66
"module": "ES2020",
7-
"target": "ES6",
7+
"target": "ES2022",
8+
"moduleResolution": "bundler",
89
"stripInternal": true,
910
"alwaysStrict": true,
10-
"moduleResolution": "node",
1111
"forceConsistentCasingInFileNames": true,
1212
"noImplicitReturns": true,
1313
"strict": true,
1414
"noUnusedLocals": true,
1515
"jsx": "react",
1616
"skipLibCheck": true
1717
},
18-
"include": ["./src/**/*"]
18+
"include": ["./src/**/*"],
19+
"exclude": ["dist", "typedoc"]
1920
}

0 commit comments

Comments
 (0)