Summary: Brings us closer to what we had with Flow where we can directly iterate over maps etc. More detail here: https://mariusschulz.com/blog/downlevel-iteration-for-es3-es5-in-typescript Reviewed By: danielbuechele Differential Revision: D16647222 fbshipit-source-id: 22732c8667e13b43a0f2f9cf7ad036369575cc5b
21 lines
485 B
JSON
21 lines
485 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "system",
|
|
"lib": ["es7", "dom"],
|
|
"target": "es6",
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"outFile": "../../built/local/tsc.js",
|
|
"sourceMap": true,
|
|
"jsx": "react",
|
|
"moduleResolution": "node",
|
|
"baseUrl": ".",
|
|
"downlevelIteration": true,
|
|
"paths": {
|
|
"flipper": ["./src/index.js"]
|
|
}
|
|
},
|
|
"include": ["src/**/*", "types/globals.tsx"],
|
|
"exclude": ["node_modules", "**/*.spec.ts"]
|
|
}
|