2020-10-05 14:56:27 +02:00
|
|
|
{
|
|
|
|
"compileOnSave": false,
|
|
|
|
"compilerOptions": {
|
2020-10-05 17:24:36 +02:00
|
|
|
"baseUrl": "src",
|
2020-10-05 14:56:27 +02:00
|
|
|
"outDir": "./dist/out-tsc",
|
|
|
|
"sourceMap": true,
|
|
|
|
"declaration": false,
|
|
|
|
"downlevelIteration": true,
|
|
|
|
"experimentalDecorators": true,
|
2020-10-16 13:08:19 +02:00
|
|
|
"strictNullChecks": true,
|
|
|
|
"strictPropertyInitialization": true,
|
2021-08-09 12:00:53 +02:00
|
|
|
"module": "esnext",
|
2020-10-05 14:56:27 +02:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"importHelpers": true,
|
|
|
|
"target": "es2015",
|
2020-10-07 10:51:44 +02:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2020-10-05 14:56:27 +02:00
|
|
|
"lib": [
|
|
|
|
"es2018",
|
|
|
|
"dom"
|
2020-10-05 17:24:36 +02:00
|
|
|
],
|
2020-10-07 10:11:20 +02:00
|
|
|
"types": [
|
2021-07-22 17:24:55 +02:00
|
|
|
"@moodlehq/cordova-plugin-file-transfer",
|
|
|
|
"@moodlehq/cordova-plugin-inappbrowser",
|
2023-07-05 10:43:57 +02:00
|
|
|
"cordova-plugin-moodleapp",
|
2020-10-13 18:49:01 +02:00
|
|
|
"cordova",
|
2020-10-15 12:11:07 +02:00
|
|
|
"dom-mediacapture-record",
|
2020-10-26 13:20:00 +01:00
|
|
|
"faker",
|
2020-10-07 10:11:20 +02:00
|
|
|
"jest",
|
2020-12-01 18:35:07 +01:00
|
|
|
"node",
|
2021-05-13 11:35:03 +02:00
|
|
|
"resize-observer-browser",
|
2020-12-01 18:35:07 +01:00
|
|
|
"webpack-env"
|
2020-10-07 10:11:20 +02:00
|
|
|
],
|
2020-10-05 17:24:36 +02:00
|
|
|
"paths": {
|
2021-01-12 10:32:39 +01:00
|
|
|
"@addons/*": ["addons/*"],
|
2020-11-19 12:40:18 +01:00
|
|
|
"@classes/*": ["core/classes/*"],
|
|
|
|
"@components/*": ["core/components/*"],
|
|
|
|
"@directives/*": ["core/directives/*"],
|
|
|
|
"@features/*": ["core/features/*"],
|
|
|
|
"@guards/*": ["core/guards/*"],
|
|
|
|
"@pipes/*": ["core/pipes/*"],
|
|
|
|
"@services/*": ["core/services/*"],
|
2020-11-24 09:31:11 +01:00
|
|
|
"@singletons": ["core/singletons/index"],
|
|
|
|
"@singletons/*": ["core/singletons/*"],
|
|
|
|
"@/*": ["*"]
|
2020-10-05 17:24:36 +02:00
|
|
|
}
|
2020-10-05 14:56:27 +02:00
|
|
|
},
|
|
|
|
"angularCompilerOptions": {
|
|
|
|
"fullTemplateTypeCheck": true,
|
2021-08-09 12:00:53 +02:00
|
|
|
"strictInjectionParameters": true
|
2020-10-05 14:56:27 +02:00
|
|
|
}
|
2020-10-05 17:24:36 +02:00
|
|
|
}
|