forked from deriv-com/SmartCharts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
36 lines (34 loc) · 1019 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
35
36
{
"ts-node": {
"files": true
},
"compilerOptions": {
/* Visit https://aka.ms/tsconfig.json to read more about this file */
"target": "es5",
"module": "es2020",
"jsx": "react",
"sourceMap": true,
"removeComments": true,
"downlevelIteration": true,
/* "outDir": "./dist", */
"rootDirs": ["./"],
/* Checks */
"strict": true,
/* Additional Checks */
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
/* Module Resolution Options */
"moduleResolution": "node",
"baseUrl": "./",
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"@binary-com/smartcharts": ["src/"]
},
"useDefineForClassFields": true
},
"include": ["**/*.ts", "**/*.tsx", "./declarations.d.ts"],
"exclude": ["**/*.js", "**/*.jsx"]
}