-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
34 lines (29 loc) · 895 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
29
30
31
32
33
34
{
"compilerOptions": {
"rootDirs": ["src", "examples"],
"outDir": "dist",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"moduleResolution": "node",
"skipLibCheck": true,
"strict": true,
"allowJs": false,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"resolveJsonModule": true,
"importHelpers": true,
"composite": true,
"target": "es2016",
"module": "commonjs",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */,
// Allow referencing @shutterstock/aws-embedded-metrics-flatten in examples
"baseUrl": ".",
"paths": {
"@shutterstock/aws-embedded-metrics-flatten": ["src"]
}
},
"exclude": ["**/cdk.out", "**/dist", "**/node_modules"]
}