mirror of
https://github.com/selfxyz/self.git
synced 2026-04-05 03:00:53 -04:00
* Simplify alias config * Restore export sorting overrides * save migration pattern * alias last minute updates * fix tests * improved import sorting * Implement typed event emitter (#869) * Implement typed event emitter * cr suggestion
55 lines
1.2 KiB
JSON
55 lines
1.2 KiB
JSON
{
|
|
"extends": "@react-native/typescript-config/tsconfig.json",
|
|
"compilerOptions": {
|
|
"lib": ["dom", "esnext"],
|
|
"module": "esnext",
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"paths": {
|
|
"@env": ["./env.ts"],
|
|
"@selfxyz/common": ["../common"],
|
|
"@selfxyz/common/*": ["../common/*"],
|
|
"@selfxyz/mobile-sdk-alpha": [
|
|
"../packages/mobile-sdk-alpha/src",
|
|
"../packages/mobile-sdk-alpha/dist"
|
|
],
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": [
|
|
"*.config.cjs",
|
|
"*.config.js",
|
|
"*.config.ts",
|
|
".babelrc",
|
|
".bundle/**/*",
|
|
".codecov.yml",
|
|
".eslintrc.cjs",
|
|
".gitattributes",
|
|
".gitignore",
|
|
".prettierignore",
|
|
".prettierrc",
|
|
".ruby-version",
|
|
".tamagui/*",
|
|
".tool-versions",
|
|
".yarn/**/*",
|
|
"android/**/*",
|
|
"app.json",
|
|
"babel.config.cjs",
|
|
"build/**/*",
|
|
"deployments/**/*",
|
|
"fastlane/**/*",
|
|
"firebase.json",
|
|
"ios/**/*",
|
|
"jest.config.cjs",
|
|
"jest.setup.js",
|
|
"metro.config.cjs",
|
|
"node_modules",
|
|
"scripts/**/*",
|
|
"tests/**/*",
|
|
"vendor/**/*",
|
|
"vite.config.ts",
|
|
"web/**/*"
|
|
]
|
|
}
|