forked from FZJ-INM1-BDA/siibra-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
28 lines (28 loc) · 836 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"compilerOptions": {
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"moduleResolution": "node",
"module": "esnext",
"target": "es2020",
"sourceMap": false,
"baseUrl": ".",
"paths": {
"third_party/*" : ["third_party/*"],
"src/*" : ["src/*"],
"common/*": ["common/*"]
},
/**
* related: https://github.com/storybookjs/storybook/issues/9241
* related: https://stackoverflow.com/questions/63457043/error-ts2314-generic-type-modulewithproviderst-requires-1-type-arguments
* if shedding storybookjs dev dependency, maybe shed this as well
*/
"skipLibCheck": true
},
"angularCompilerOptions":{
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true,
"annotateForClosureCompiler" : true,
"strictTemplates": true
}
}