forked from pagopa/mui-italia
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
54 lines (54 loc) · 1.24 KB
/
Copy pathtsconfig.json
File metadata and controls
54 lines (54 loc) · 1.24 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
44
45
46
47
48
49
50
51
52
53
54
{
"compilerOptions": {
"baseUrl": "./src",
"paths": {
"@components/*": [ "components/*" ],
"@tokens": [ "tokens/index" ],
"@theme": [ "theme/index" ],
"@illustrations/*": [ "illustrations/*" ],
"@assets/*": [ "assets/*" ],
"@icons/*": [ "icons/*" ],
"@static/*": [ "static/*" ],
"@types": [ "types" ],
},
"outDir": "dist",
"target": "es6",
"module": "commonjs",
"lib": [
"es6",
"dom",
"es2019"
],
"jsx": "react-jsx",
"declaration": true,
"strict": true,
"noImplicitAny": true,
"sourceMap": false,
"noUnusedLocals": true,
"noImplicitReturns": true,
"moduleResolution": "node",
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"allowSyntheticDefaultImports": true,
"preserveConstEnums": true,
"allowJs": false,
"noUnusedParameters": true,
"strictFunctionTypes": true,
"isolatedModules": true,
"noFallthroughCasesInSwitch": true,
"resolveJsonModule": true
},
"include": [
"src/**/*"
],
"exclude": [
"__mocks__",
"dist",
"node_modules",
"**/__tests__/*",
"Dangerfile.ts",
"src/**/__tests__/*"
]
}