1
0
Fork 0
mirror of https://github.com/LemmyNet/lemmy.git synced 2025-02-19 04:15:24 +00:00
lemmy/api_tests/tsconfig.json
Dessalines 0630d214e3
Removing sniptt/monads for lemmy-js-client. ()
* Removing sniptt/monads for lemmy-js-client.

* Fix tests.
2023-01-04 10:59:26 -05:00

17 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"]
}