message2call
Version:
Convert Send Message and on Message to asynchronous get and call style
20 lines (18 loc) • 516 B
JSON
{
// https://github.com/tsconfig/bases#recommended-tsconfigjson
"extends": "@tsconfig/recommended/tsconfig.json",
"compilerOptions": {
"composite": true,
"target": "ESNext",
// typescript options here
"outDir": "./dist",
"declaration": true,
"allowJs": true,
"module": "NodeNext",
"moduleResolution": "NodeNext"
// "declarationMap": true,
// "noImplicitReturns": false,
},
"include": ["rollup.config.iife.mjs", "rollup.config.mjs"],
"exclude": ["node_modules"]
}