mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-04-22 02:07:55 +00:00
19 lines
654 B
JSON
19 lines
654 B
JSON
{
|
|
"extends": "expo/tsconfig.base",
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@pezkuwi/lib/*": ["../shared/lib/*"],
|
|
"@pezkuwi/utils/*": ["../shared/utils/*"],
|
|
"@pezkuwi/theme/*": ["../shared/theme/*"],
|
|
"@pezkuwi/types/*": ["../shared/types/*"],
|
|
"@pezkuwi/i18n": ["../shared/i18n"],
|
|
"@/*": ["src/*"]
|
|
},
|
|
"typeRoots": ["./src/types", "./node_modules/@types"]
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.tsx", "shared/**/*.ts", "App.tsx", "index.ts"],
|
|
"exclude": ["**/__tests__/**/*", "**/__mocks__/**/*", "**/*.test.ts", "**/*.test.tsx", "**/*.spec.ts", "**/*.spec.tsx"]
|
|
}
|