-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
executable file
·43 lines (43 loc) · 1.47 KB
/
Copy pathtsconfig.json
File metadata and controls
executable file
·43 lines (43 loc) · 1.47 KB
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
38
39
40
41
42
43
{
"compilerOptions": {
"target": "ESNext",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"noImplicitThis": true,
"noEmit": false,
"composite": true,
"outDir": "./dist",
"rootDir": "./",
"sourceMap": true,
"inlineSourceMap": false,
"sourceRoot": "",
"declaration": true,
"declarationMap": true,
"jsx": "react-jsx",
"jsxImportSource": "@emotion/react",
"types": ["jest", "node"],
"ignoreDeprecations": "5.0",
"paths": {
"@tests/*": ["./src/__tests__/*"],
"@mocks/*": ["./src/__tests__/mocks/*"],
"@core/*": ["./src/core/*"],
"@setup/*": ["./src/setup/*"],
"@factory*": ["./src/core/field-engine/generator/factory/*"],
"@framework/*": ["./src/core/framework/*"],
"@utility/*": ["./src/core/framework/utility/*"],
"@common/*": ["./src/core/framework/common/*"]
}
},
"exclude": ["node_modules", "dist", "build"],
"include": ["src/**/*", "tests/**/*", "src/**/*.json"]
}