Skip to content

Commit

Permalink
fix: tsconfig (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
duguyihou authored Jul 2, 2023
1 parent 6f0853a commit d7384d3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "neostyle",
"version": "0.1.8",
"description": "a small tool to write styles for react native",
"version": "0.1.9",
"description": "responsive style for react native",
"author": "duguyihou",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
14 changes: 12 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,23 @@
"esModuleInterop": true,
"isolatedModules": false,
"jsx": "react",
"lib": ["ES6","ES2015", "ES2016", "ES2017", "ES2018", "ES2019"],
"lib": [
"ES6",
"ES2015",
"ES2016",
"ES2017",
"ES2018",
"ES2019",
"ES2020",
"ES2021",
"ES2022"
],
"noUnusedParameters": true,
"declaration": true,
"noUnusedLocals": true,
"moduleResolution": "node",
"strict": true,
"target": "ES5",
"target": "ESNext",
"skipLibCheck": true,
"outDir": "./dist",
"baseUrl": "./src",
Expand Down

0 comments on commit d7384d3

Please sign in to comment.