-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
37 lines (37 loc) · 1.15 KB
/
tsconfig.base.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
29
30
31
32
33
34
35
36
37
{
"compilerOptions": {
"esModuleInterop": true,
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noEmitHelpers": true,
"importHelpers": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"strict": false,
"target": "ES2022",
"useDefineForClassFields": false,
"module": "esnext",
"typeRoots": ["node_modules/@types"],
"lib": ["es2015", "es2019", "dom", "es2022"],
"baseUrl": ".",
"rootDir": ".",
"paths": {
"@spryker/*": ["dist/libs/*", "libs/*/src/index.ts"]
}
},
"angularCompilerOptions": {
"compilationMode": "partial",
"annotateForClosureCompiler": true,
"fullTemplateTypeCheck": true,
"skipTemplateCodegen": true,
"strictMetadataEmit": true,
"strictInjectionParameters": true,
"enableResourceInlining": true,
"strictInputAccessModifiers": true
},
"exclude": ["node_modules", "tmp", "dist"]
}