Summary: Added tsconfig.base.json and extend other tsconfigs from it. Reviewed By: passy Differential Revision: D20594653 fbshipit-source-id: 28dd80262613e78a7c4ce25fa31f251537ec2b06
11 lines
203 B
JSON
11 lines
203 B
JSON
{
|
|
"extends": "../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"outDir": "lib",
|
|
"rootDir": "src",
|
|
"allowJs": true
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["node_modules", "**/__tests__/*"]
|
|
}
|