@helios-lang/compiler
Version:
Helios is a Domain Specific Language that compiles to Plutus-Core (i.e. Cardano on-chain validator scripts). Helios is a non-Haskell alternative to Plutus. With this library you can compile Helios scripts and build Cardano transactions, all you need to bu
22 lines (21 loc) • 555 B
JSON
{
"compilerOptions": {
"checkJs": true,
"declaration": true,
"declarationMap": true,
"declarationDir": "types",
"skipLibCheck": true,
"noImplicitThis": true,
"strictNullChecks": true,
"moduleResolution": "nodenext",
"module": "nodenext",
"target": "esnext",
"lib": ["es2020"]
},
"exclude": ["node_modules", "types/**/*.d.ts", "test"],
"include": [
"src/**/*.js",
"node_modules/@helios-lang/type-utils",
"test/utils.js"
]
}