2022-01-19 17:24:11 +01:00
|
|
|
/* To learn more about this file see: https://angular.io/config/tsconfig. */
|
|
|
|
{
|
|
|
|
"extends": "../../tsconfig.json",
|
|
|
|
"compilerOptions": {
|
2023-02-22 15:53:25 +01:00
|
|
|
"outDir": "../../dist/openvidu-angular",
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
2025-06-27 15:39:23 +02:00
|
|
|
"lib": ["ES2021", "dom"],
|
2023-02-22 15:53:25 +01:00
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
2022-01-19 17:24:11 +01:00
|
|
|
"declaration": true,
|
2023-02-22 15:53:25 +01:00
|
|
|
"sourceMap": true,
|
2022-01-19 17:24:11 +01:00
|
|
|
"declarationMap": true,
|
|
|
|
"inlineSources": true,
|
2022-05-13 17:11:04 +02:00
|
|
|
"resolveJsonModule": true,
|
2022-01-19 17:24:11 +01:00
|
|
|
"types": []
|
|
|
|
},
|
|
|
|
"exclude": [
|
2023-02-22 15:53:25 +01:00
|
|
|
"node_modules",
|
2022-01-19 17:24:11 +01:00
|
|
|
"src/test.ts",
|
2022-04-08 13:52:12 +02:00
|
|
|
"**/*.spec.ts",
|
|
|
|
"**/*.mock.ts"
|
2022-01-19 17:24:11 +01:00
|
|
|
]
|
|
|
|
}
|