mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
25 lines
470 B
JSON
25 lines
470 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es2017",
|
|
"newLine": "lf",
|
|
"alwaysStrict": true,
|
|
"declaration": true,
|
|
"esModuleInterop": true,
|
|
"inlineSources": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"preserveConstEnums": true,
|
|
"sourceMap": true,
|
|
"stripInternal": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"test/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|