Skip to content

Commit

Permalink
fix: preserve jsx by default
Browse files Browse the repository at this point in the history
  • Loading branch information
CyanSalt committed May 7, 2022
1 parent 8c8662b commit 9e96a67
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tsconfig.lib.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,16 @@
"allowJs": true,
"noEmit": true,
"target": "ES2019",
"downlevelIteration": true,
"noImplicitThis": true,
"strictNullChecks": true,
"esModuleInterop": true,
"isolatedModules": true,
"moduleResolution": "Node",
"downlevelIteration": true,
"forceConsistentCasingInFileNames": true,
"newLine": "LF",
"resolveJsonModule": true,
"jsx": "preserve",
"useDefineForClassFields": true,
"skipLibCheck": true
}
Expand Down

0 comments on commit 9e96a67

Please sign in to comment.