diff options
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tsconfig.json b/tsconfig.json index 24c347c73..13e9741bc 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,14 +1,16 @@ { - "extends": "@tsconfig/react-native/tsconfig.json", + "extends": "@react-native/typescript-config/tsconfig.json", "compilerOptions": { "jsx": "react-jsx", + "module": "esnext", "types": ["node"], "paths": { "#/*": ["./src/*"], "lib/*": ["./src/lib/*"], "platform/*": ["./src/platform/*"], "state/*": ["./src/state/*"], - "view/*": ["./src/view/*"] + "view/*": ["./src/view/*"], + "crypto": ["./src/platform/crypto.ts"] } } } |