* 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.
23 lines
494 B
JSON
23 lines
494 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2019",
|
|
"lib": [
|
|
"es2019",
|
|
"es2020.bigint",
|
|
"es2020.string",
|
|
"es2020.symbol.wellknown"
|
|
],
|
|
"module": "commonjs",
|
|
"outDir": ".out",
|
|
"tsBuildInfoFile": ".out/tsbuildinfo",
|
|
"incremental": true,
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true
|
|
},
|
|
"exclude": ["node_modules", "**/*.test.ts"]
|
|
}
|