Skip to content

Commit

Permalink
build: remove dependency on expo moduel scripts
Browse files Browse the repository at this point in the history
Signed-off-by: Timo Glastra <[email protected]>
  • Loading branch information
TimoGlastra committed Jul 6, 2022
1 parent 18f0138 commit 9a3639d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
},
"license": "Apache-2.0",
"devDependencies": {
"expo-module-scripts": "^2.0.0",
"husky": "^4.2.3",
"prettier": "^2.0.3",
"release-it": "^14.10.0",
Expand Down
13 changes: 11 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
{
"extends": "expo-module-scripts/tsconfig.plugin",
"compilerOptions": {
"declaration": true,
"outDir": "build",
"rootDir": "src"
"rootDir": "src",
"lib": ["es2018"],
"module": "commonjs",
"target": "es2018",

"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node"
},
"include": ["./src"]
}

0 comments on commit 9a3639d

Please sign in to comment.