@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
19 lines • 404 B
JSON
{
"compilerOptions": {
"noImplicitAny": true,
"moduleResolution": "node",
"module": "commonjs",
"outDir": "./build",
"target": "es6",
"rootDir": "./src",
"typeRoots": ["node_modules/@types"],
"declaration": true
},
"include": [
"./src/**/*"
],
"exclude": [
"./build",
"./node_modules"
]
}