2024-07-02 19:19:05 +02:00
|
|
|
/* To learn more about this file see: https://angular.io/config/tsconfig. */
|
2017-03-08 16:50:29 +01:00
|
|
|
{
|
|
|
|
"compileOnSave": false,
|
|
|
|
"compilerOptions": {
|
2024-07-02 19:19:05 +02:00
|
|
|
"allowSyntheticDefaultImports": true, // TODO: fix for https://github.com/livekit/client-sdk-js/issues/893
|
|
|
|
"baseUrl": "./",
|
2017-03-08 16:50:29 +01:00
|
|
|
"outDir": "./dist/out-tsc",
|
2024-07-02 19:19:05 +02:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitOverride": true,
|
|
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2017-03-08 16:50:29 +01:00
|
|
|
"sourceMap": true,
|
|
|
|
"declaration": false,
|
2024-07-02 19:19:05 +02:00
|
|
|
"downlevelIteration": true,
|
2017-03-08 16:50:29 +01:00
|
|
|
"experimentalDecorators": true,
|
2024-07-02 19:19:05 +02:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"importHelpers": true,
|
|
|
|
"target": "ES2022",
|
|
|
|
"module": "ES2022",
|
|
|
|
"useDefineForClassFields": false,
|
|
|
|
"strictPropertyInitialization": false,
|
2017-03-08 16:50:29 +01:00
|
|
|
"lib": [
|
2024-07-02 19:19:05 +02:00
|
|
|
"ES2022",
|
2017-03-08 16:50:29 +01:00
|
|
|
"dom"
|
2024-07-02 19:19:05 +02:00
|
|
|
],
|
|
|
|
"paths": {
|
|
|
|
"crypto": ["./node_modules/crypto-browserify"],
|
|
|
|
"stream": [
|
|
|
|
"node_modules/stream-browserify"
|
|
|
|
],
|
|
|
|
"buffer": [
|
|
|
|
"node_modules/buffer"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"types": [
|
|
|
|
"node"
|
2017-03-08 16:50:29 +01:00
|
|
|
]
|
2024-07-02 19:19:05 +02:00
|
|
|
},
|
|
|
|
"angularCompilerOptions": {
|
|
|
|
"enableI18nLegacyMessageIdFormat": false,
|
|
|
|
"strictInjectionParameters": true,
|
|
|
|
"strictInputAccessModifiers": true,
|
|
|
|
"strictTemplates": true
|
2017-03-08 16:50:29 +01:00
|
|
|
}
|
2024-07-02 19:19:05 +02:00
|
|
|
}
|