mirror of https://github.com/Chocobozzz/PeerTube
Mirror of https://github.com/Chocobozzz/PeerTube
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
770 B
33 lines
770 B
{ |
|
"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" |
|
], |
|
"resolveJsonModule": true, |
|
"strict": false, |
|
"strictBindCallApply": true, |
|
"allowUnreachableCode": false, |
|
"allowUnusedLabels": false, |
|
"noFallthroughCasesInSwitch": true, |
|
"noUnusedLocals": true, |
|
"skipLibCheck": true, |
|
"composite": true, |
|
"declarationMap": true |
|
} |
|
}
|
|
|