mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-01 01:59:55 +00:00
8065620cb5
* Removing monads. Fixes #98 * Fixing http get params * In encode get params, dont serialize the undefineds. * v0.17.0-rc.60
18 lines
401 B
JSON
18 lines
401 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"declarationDir": "./dist",
|
|
"module": "CommonJS",
|
|
"noImplicitAny": true,
|
|
"lib": ["es2017", "es7", "es6", "dom"],
|
|
"outDir": "./dist",
|
|
"target": "ES5",
|
|
"experimentalDecorators": true,
|
|
"strictNullChecks": true,
|
|
"moduleResolution": "Node"
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|