forked from scale8/scale8-tag-manager-and-analytics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
executable file
·34 lines (34 loc) · 915 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": {
"target": "ES2019",
"module": "commonjs",
"lib": ["dom","es2019"],
"outDir": "dist",
"typeRoots": ["./node_modules/@types", "./typings"],
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"importHelpers": true,
"esModuleInterop": true,
"strict": true
},
"exclude": [ "node_modules" ],
"include": [
"typings/**/*",
"src/**/*",
"tests/**/*",
"api/typings/**/*",
"api/src/**/*",
"api/tests/**/*",
"core/typings/**/*",
"core/src/**/*",
"core/tests/**/*",
"ui/typings/**/*",
"ui/src/**/*",
"ui/tests/**/*",
"platforms/**/*",
"common/**/*"
]
}