mirror of
https://github.com/LemmyNet/lemmy
synced 2024-10-30 15:21:20 +00:00
69f179bd33
* Adding prettier check to CI. * Running prettier on codebase.
16 lines
357 B
JSON
16 lines
357 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"]
|
|
}
|