generated from maxgfr/rn-simple-modal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
24 lines (24 loc) · 1 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"extends": "@tsconfig/react-native/tsconfig.json" /* Recommended React Native TSConfig base */,
"include": ["src/**/*", "stories", "__tests__"],
"exclude": [
"node_modules",
"babel.config.js",
"metro.config.js",
"jest.config.js",
"**/*.spec.ts",
"**/*.spec.tsx",
"**/*.test.ts",
"**/*.test.tsx",
"**/*.stories.ts",
"**/*.stories.tsx"
],
"compilerOptions": {
"skipLibCheck": true /* Skip type checking all .d.ts files. */,
"outDir": "./dist", /* Redirect output structure to the directory. */
"noEmit": false /* Do not emit outputs. */,
"declaration": true, /* Generates corresponding '.d.ts' file. */
"esModuleInterop": false, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
"allowSyntheticDefaultImports": false /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */,
}
}