Implement fallback install and outputs (#2)

* Add better version support. Restructure code. Implement OS agnostic fallback

* Support latest for cabal and stack. Add enable-stack option.

* Add outputs

* Update documentation. Change default for GHC to latest.
This commit is contained in:
Jared Weakly
2020-04-24 11:53:29 -07:00
committed by GitHub
parent c4e863e92f
commit 120f5dc3eb
19 changed files with 5359 additions and 2031 deletions

View File

@@ -8,12 +8,15 @@
"es2020.symbol.wellknown"
],
"module": "commonjs",
"outDir": "./lib",
"outDir": ".out",
"tsBuildInfoFile": ".out/tsbuildinfo",
"incremental": true,
"rootDir": "./src",
"strict": true,
"noImplicitAny": true,
"esModuleInterop": true,
"moduleResolution": "node"
"moduleResolution": "node",
"resolveJsonModule": true
},
"exclude": ["node_modules", "**/*.test.ts"]
}