UNPKG

@mediarithmics/plugins-nodejs-sdk

Version:

This is the mediarithmics nodejs to help plugin developers bootstrapping their plugin without having to deal with most of the plugin boilerplate

25 lines (24 loc) 645 B
{ "compilerOptions": { "lib": ["es2019"], "noImplicitAny": true, "strictNullChecks": true, "strictBindCallApply": true, "moduleResolution": "node", "esModuleInterop": true, "module": "commonjs", "target": "es2019", "sourceMap": true, "alwaysStrict": true, "rootDir": "./src", "typeRoots": ["node_modules/@types"], "outDir": "./lib", "experimentalDecorators": true, "emitDecoratorMetadata": true, "declaration": true, "resolveJsonModule": true, "skipLibCheck": true }, "include": ["./src/**/*"], "exclude": ["./lib", "./node_modules", "./examples", "./src/tests"] }