Skip to content

Commit

Permalink
Improve typescript performacne
Browse files Browse the repository at this point in the history
  • Loading branch information
blazejkustra committed Jul 27, 2023
1 parent dd99141 commit fade5bc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -95,3 +95,6 @@ storybook-static
# E2E test reports
tests/e2e/results/
.reassure

# Typescript
tsconfig.tsbuildinfo
4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,16 @@
"es2022.string"
],
"allowJs": true,
"checkJs": false,
"jsx": "react-native",
"noEmit": true,
"isolatedModules": true,
"strict": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true
"skipLibCheck": true,
"incremental": true
},
"exclude": ["**/node_modules/*", "**/dist/*", ".github/actions/**/index.js"],
"include": ["src", "desktop", "web", "docs", "assets", "config", "tests", "jest", "__mocks__", ".github/**/*", ".storybook/**/*"]
Expand Down

0 comments on commit fade5bc

Please sign in to comment.