@owlprotocol/envvars
v3.1.2
Published
Typescript starter project.
Downloads
9
Readme
Typescript Starter
Typescript starter project.
package.json
Exports are defined as below
{
"type": "module",
"main": "./lib/cjs/index.cjs",
"module": "./lib/esm/index.mjs",
"types": "./lib/types/index.d.ts",
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"require": "./lib/cjs/index.js",
"import": "./lib/esm/index.js"
}
}
type: "module"
: By default we use ESM Moduleslib/esm
: ESM built outputlib/cjs
: CJS build outputlib/types
: Typescript types- No minified bundles are provided as these are left to frameworks to bundle.