Summary: Converted scripts/build-release.js and scripts/build-headless.js to typescript Reviewed By: passy Differential Revision: D20066504 fbshipit-source-id: 25f336062361e1211b581f96979978a6bf4fe6d4
24 lines
637 B
JSON
24 lines
637 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"lib": ["es7", "dom", "es2017"],
|
|
"esModuleInterop": true,
|
|
"target": "es6",
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"sourceMap": true,
|
|
"jsx": "react",
|
|
"moduleResolution": "node",
|
|
"baseUrl": ".",
|
|
"downlevelIteration": true,
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"flipper": ["./src/index.tsx"],
|
|
"live-plugin-manager": ["./types/live-plugin-manager.d.tsx"]
|
|
},
|
|
"strict": true
|
|
},
|
|
"include": ["src/**/*", "static/**/*", "scripts/**/*", "types/*", "headless/*"],
|
|
"exclude": ["node_modules", "**/*.spec.ts"]
|
|
}
|