mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00

The previous package was outdated, preventing us from updating TS. This one also lints YAML and JSON, and applies many more rules to the test files, explaining all the changes in this PR.
22 lines
407 B
JSON
22 lines
407 B
JSON
{
|
|
"extends": "@tsconfig/node18/tsconfig.json",
|
|
"compilerOptions": {
|
|
"incremental": true,
|
|
"lib": [ "es2021" ],
|
|
"moduleResolution": "node16",
|
|
"declaration": true,
|
|
"inlineSources": true,
|
|
"newLine": "lf",
|
|
"outDir": "dist",
|
|
"preserveConstEnums": true,
|
|
"sourceMap": true,
|
|
"stripInternal": true
|
|
},
|
|
"include": [
|
|
"src"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|