UNPKG

@pajn/node-tradfri-client

Version:

Library to talk to IKEA Trådfri Gateways without external binaries

36 lines (33 loc) 695 B
{ "compilerOptions": { "noEmit": true, "experimentalDecorators": true, "emitDecoratorMetadata": true, // Stop checking declaration files in node_modules "skipLibCheck": true, "module": "commonjs", "moduleResolution": "node", "noEmitOnError": false, "removeComments": false, "stripInternal": true, "resolveJsonModule": true, "target": "es2015", // this is more annoying in tests than it helps "noImplicitAny": false, "noUnusedLocals": false, "noUnusedParameters": false, "noImplicitThis": true, "types": [ "node", "mocha", "chai", "chai-as-promised", "sinon", "sinon-chai" ] }, "include": [ "test/**/*.ts", "src/**/*.test.ts" ] }