mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2026-09-03 20:53:09 -05:00
* Prepare ability to transfer channels too * Cleanup object and components names * Correctly separate video ownership changes from other * Add bulk actions to ownership changes
54 lines
1.2 KiB
JSON
54 lines
1.2 KiB
JSON
{
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"sourceMap": true,
|
|
"declaration": false,
|
|
"moduleResolution": "bundler",
|
|
"module": "es2020",
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"allowJs": true,
|
|
"importHelpers": true,
|
|
"strictBindCallApply": true,
|
|
"target": "ES2022",
|
|
"isolatedModules": true,
|
|
"strictPropertyInitialization": false,
|
|
"strictNullChecks": false,
|
|
"typeRoots": [
|
|
"node_modules/@types"
|
|
],
|
|
"paths": {
|
|
"@app/*": [
|
|
"./src/app/*"
|
|
],
|
|
"@root-helpers/*": [
|
|
"./src/root-helpers/*"
|
|
],
|
|
"@pt-types": [
|
|
"./src/types"
|
|
]
|
|
}
|
|
},
|
|
"references": [
|
|
{ "path": "../packages/core-utils" },
|
|
{ "path": "../packages/models" },
|
|
{ "path": "../packages/typescript-utils" }
|
|
],
|
|
"include": [
|
|
"./src/polyfills.ts",
|
|
"./src/environments/*.ts",
|
|
"./src/main*.ts",
|
|
"./src/**/*.d.ts",
|
|
"./src/app/**/*.ts",
|
|
"./src/shims/*.ts"
|
|
],
|
|
"angularCompilerOptions": {
|
|
"strictInjectionParameters": true,
|
|
"strictTemplates": true,
|
|
"enableI18nLegacyMessageIdFormat": false
|
|
}
|
|
}
|