mirror of
https://github.com/S2-/gitlit
synced 2025-08-03 21:00:04 +02:00
22 lines
456 B
JSON
22 lines
456 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noEmitOnError": true,
|
|
"strictNullChecks": true,
|
|
"target": "es2015",
|
|
"sourceMap": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"test/**/*.ts"
|
|
]
|
|
}
|