mirror of
https://github.com/selfxyz/self.git
synced 2026-01-09 06:38:09 -05:00
* 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
50 lines
1.0 KiB
JSON
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/**/*"
|
|
]
|
|
}
|