mirror of https://github.com/Chocobozzz/PeerTube
35 lines
791 B
JSON
35 lines
791 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "NodeNext",
|
|
"target": "ES2017",
|
|
"noImplicitAny": false,
|
|
"sourceMap": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"isolatedModules": true,
|
|
"importHelpers": true,
|
|
"removeComments": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"lib": [
|
|
"dom",
|
|
"es2015",
|
|
"es2016",
|
|
"es2017",
|
|
"es2018",
|
|
"es2019"
|
|
],
|
|
"baseUrl": "./",
|
|
"resolveJsonModule": true,
|
|
"strict": false,
|
|
"strictBindCallApply": true,
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": true,
|
|
"skipLibCheck": true,
|
|
"composite": true,
|
|
"declarationMap": true
|
|
}
|
|
}
|