You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
501 B
23 lines
501 B
{ |
|
"extends": "@tsconfig/react-native/tsconfig.json", |
|
"compilerOptions": { |
|
"jsx": "react", |
|
"baseUrl": ".", |
|
"paths": { "~*": ["./src/*"] }, |
|
"strictNullChecks": false, |
|
"esModuleInterop": true |
|
// "jsx": "react-native" /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */, |
|
}, |
|
"include": [ |
|
"src", |
|
".eslintrc.js", |
|
"react-native.config.js", |
|
"metro.config.js", |
|
"index.js", |
|
"babel.config.js", |
|
"jest.config.js" |
|
], |
|
|
|
/* Completeness */ |
|
"skipLibCheck": true |
|
}
|
|
|