Files
PeerTube/client/tsconfig.json
T
Chocobozzz baa297cff4 Cleanup ownership changes
* Prepare ability to transfer channels too
 * Cleanup object and components names
 * Correctly separate video ownership changes from other
 * Add bulk actions to ownership changes
2026-04-03 14:47:05 +02:00

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
}
}