Files
flipper/desktop/pkg/templates/device-plugin/tsconfig.json.template
Anton Nikolaev 68248a7c63 Device plugin management (4/n): Allow choosing "device" plugin type in "flipper-pkg init"
Summary:
Added option to bootstrap device plugin in "flipper-pkg".

Changelog: "flipper-pkg init" can now be used to bootstrap device plugins

Reviewed By: mweststrate

Differential Revision: D26389429

fbshipit-source-id: 90773011bd50289004cd747111e1787402840922
2021-02-16 10:50:19 -08:00

15 lines
295 B
Plaintext

{
"compilerOptions": {
"target": "ES2017",
"module": "ES6",
"jsx": "react",
"sourceMap": true,
"noEmit": true,
"strict": true,
"moduleResolution": "node",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true
},
"files": ["src/index.tsx"]
}