Skip to content

Commit 055b890

Browse files
authored
Define TypeScript compiler target (#522)
TypeScript was complaining about some syntax features, this solves it. It doesn’t affect the output, as `tsdx` ignores the `target` property.
1 parent 0616187 commit 055b890

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

packages/tailwindcss-language-service/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"compilerOptions": {
44
"module": "esnext",
55
"lib": ["ES2020"],
6+
"target": "ES2020",
67
"importHelpers": true,
78
"declaration": true,
89
"sourceMap": true,

0 commit comments

Comments
 (0)