mirror of
https://github.com/facebook/react-native.git
synced 2024-11-21 12:39:27 +00:00
177f2bfc8f
Summary: This current consists of a bunch of TypeScript code, which will be ported to Flow in the stack. Changelog: [Internal] bypass-github-export-checks Reviewed By: huntie Differential Revision: D55741526 fbshipit-source-id: 1dc30d2ab63e0526dd6fed17ccf7cce9f57bdbee
29 lines
621 B
JSON
29 lines
621 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2017",
|
|
"module": "commonjs",
|
|
"lib": ["es2017"],
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"composite": true,
|
|
"emitDeclarationOnly": true,
|
|
|
|
"strict": true,
|
|
|
|
/* Additional Checks */
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
/* Module Resolution Options */
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
|
|
"rootDir": "src",
|
|
"outDir": "build"
|
|
},
|
|
"exclude": ["**/__tests__/**/*", "**/build/**/*"]
|
|
}
|