-
Notifications
You must be signed in to change notification settings - Fork 4k
Expand file tree
/
Copy pathtsconfig.app.json
More file actions
24 lines (24 loc) · 945 Bytes
/
Copy pathtsconfig.app.json
File metadata and controls
24 lines (24 loc) · 945 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "./tsconfig.base.json",
"compilerOptions": {
"tsBuildInfoFile": "./tsconfig.app.ts7.tsbuildinfo",
"types": ["react-native", "react-native-web"],
"lib": ["DOM", "ESNext"]
},
"include": [
"src",
"assets",
"modules",
".storybook/**/*",
// Not app directories, but the app program reaches into them: `src/App.tsx` imports
// `wdyr`, `src/libs/ApiUtils` imports `config/proxyConfig`, `.storybook` imports the
// Rsbuild config, and the Storybook stories import the shared report fixtures. They were
// already being type-checked here via those imports; listing them makes that visible.
"wdyr.ts",
"config/proxyConfig.ts",
"config/rsbuild",
"__mocks__/reportData"
],
"exclude": ["**/node_modules/*", "**/dist/*", "src/**/__mocks__/**"]
}