Files
DefinitelyTyped/types/firmata/tsconfig.json
Andrew Pearson 29611ede92 Upgrading serialport from v4 to v6 (#20691)
* Upgrading serialport from v4 to v6

* Correcting baseurl and typeroots for v4 of library

* Exporting option interface and moving interfaces to Pascal case

* Removing redundent interface export, updating v4 library to fit with interface naming convention,  updating firmata package to point to the v4 library.
2017-10-23 14:50:01 -07:00

26 lines
561 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"paths": {
"serialport": ["serialport/v4"]
},
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"firmata-tests.ts"
]
}