mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-10-31 22:18:59 +00:00
17 lines
335 B
JSON
17 lines
335 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"declaration": true,
|
||
|
"declarationDir": "./dist",
|
||
|
"module": "CommonJS",
|
||
|
"noImplicitAny": true,
|
||
|
"lib": ["es2017", "es7", "es6", "dom"],
|
||
|
"outDir": "./dist",
|
||
|
"target": "ES5",
|
||
|
"moduleResolution": "Node"
|
||
|
},
|
||
|
"include": [
|
||
|
"src/**/*"
|
||
|
],
|
||
|
"exclude": ["node_modules", "dist"]
|
||
|
}
|