Files
self/app/tsconfig.test.json
Justin Hernandez 07addb2a9a chore: add TypeScript tooling (#891)
* chore: add TypeScript tooling

* chore: remove unused tsconfig and migration script

* update settings

* add knip config

* format

* more reliable circuits tests

* fix workflow

* fix types

* updates

* ts updates

* more updates

* fix upgrade

* fixes
2025-08-13 21:02:07 -07:00

50 lines
1.0 KiB
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"types": ["node", "jest"],
"paths": {
"@env": ["./env.ts"],
"@selfxyz/common": ["../common"],
"@selfxyz/common/*": ["../common/*"],
"@": ["./src"],
"@/*": ["./src/*"],
"@tests": ["./tests/src"],
"@tests/*": ["./tests/src/*"]
}
},
"include": ["tests/**/*", "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/**/*",
"vendor/**/*",
"vite.config.ts",
"web/**/*"
]
}