Files
PeerTube/client/tsconfig.json
T

54 lines
1.2 KiB
JSON
Raw Normal View History

2016-03-07 14:48:46 +01:00
{
2021-08-17 14:01:51 +02:00
"compileOnSave": false,
"compilerOptions": {
"sourceMap": true,
"declaration": false,
2025-11-14 14:35:11 +01:00
"moduleResolution": "bundler",
2022-05-24 16:29:01 +02:00
"module": "es2020",
2024-06-24 10:15:25 +02:00
"esModuleInterop": true,
2021-08-17 14:01:51 +02:00
"experimentalDecorators": true,
"noImplicitAny": true,
"noImplicitThis": true,
"alwaysStrict": true,
2023-07-31 14:34:36 +02:00
"allowJs": true,
2021-08-17 14:01:51 +02:00
"importHelpers": true,
"strictBindCallApply": true,
2023-02-16 14:17:00 +01:00
"target": "ES2022",
2024-08-16 10:45:30 +02:00
"isolatedModules": true,
2026-04-03 09:08:25 +02:00
"strictPropertyInitialization": false,
"strictNullChecks": false,
2021-08-17 14:01:51 +02:00
"typeRoots": [
"node_modules/@types"
],
"paths": {
2023-02-16 14:17:00 +01:00
"@app/*": [
2026-03-26 15:54:20 +01:00
"./src/app/*"
2023-02-16 14:17:00 +01:00
],
"@root-helpers/*": [
2026-03-26 15:54:20 +01:00
"./src/root-helpers/*"
2026-03-26 16:53:34 +01:00
],
"@pt-types": [
"./src/types"
2023-02-16 14:17:00 +01:00
]
2024-08-21 10:56:35 +02:00
}
2021-08-17 14:01:51 +02:00
},
2023-07-31 14:34:36 +02:00
"references": [
{ "path": "../packages/core-utils" },
{ "path": "../packages/models" },
{ "path": "../packages/typescript-utils" }
],
2021-08-17 14:01:51 +02:00
"include": [
2026-03-26 15:54:20 +01:00
"./src/polyfills.ts",
"./src/environments/*.ts",
"./src/main*.ts",
"./src/**/*.d.ts",
"./src/app/**/*.ts",
"./src/shims/*.ts"
2021-08-17 14:01:51 +02:00
],
"angularCompilerOptions": {
"strictInjectionParameters": true,
"strictTemplates": true,
"enableI18nLegacyMessageIdFormat": false
}
2016-03-07 14:48:46 +01:00
}