mirror of
https://github.com/LemmyNet/lemmy
synced 2024-10-30 15:21:20 +00:00
0630d214e3
* Removing sniptt/monads for lemmy-js-client. * Fix tests.
18 lines
365 B
JSON
18 lines
365 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"declarationDir": "./dist",
|
|
"module": "CommonJS",
|
|
"noImplicitAny": true,
|
|
"lib": ["es2017", "es7", "es6", "dom"],
|
|
"outDir": "./dist",
|
|
"target": "ES5",
|
|
"strictNullChecks": true,
|
|
"moduleResolution": "Node"
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|