Files
self/sdk/common/tsconfig.json
turnoffthiscomputer cc169061bd add common sdk (#537)
* add common sdk

* remove sdk backend api

* remove registry

* regenerate sha256 rsa dsc each time

* download ski-pem dynamically on staging, refactor initpassportDataParsing

* add state machine for button on prove screen, improve ux on splash screen

* fetch ski-pem in production

* fix linter issues

* fix prove screen button bugs

* update podfile.lock and yarn.lock

* run linter in circuits repo

* bump build

* bump version for sentry debugging

* bump ios to version 118

---------

Co-authored-by: Justin Hernandez <transphorm@gmail.com>
2025-05-07 11:45:21 +02:00

30 lines
684 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"declaration": true,
"declarationDir": "./dist",
"outDir": "./dist",
"strict": false,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"jsx": "react",
"moduleResolution": "node",
"baseUrl": ".",
"paths": {
"@common/*": ["../../common/src/*"]
}
},
"include": [
"index.ts",
"src/**/*",
"../../common/src/**/*",
"circuits/**/*",
"circuits/**/*.json",
"utils/utils.ts"
],
"exclude": ["node_modules", "**/__tests__/*", "dist", "common/src/utils/csca.ts"]
}