-
-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathtsconfig.json
More file actions
47 lines (47 loc) · 1.49 KB
/
Copy pathtsconfig.json
File metadata and controls
47 lines (47 loc) · 1.49 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
{
"exclude": ["node_modules", "build", "dist", "coverage"],
"include": ["src/**/*", "*.[m]js"],
"files": [
"node_modules/jest-extended/types/index.d.ts",
"node_modules/@testing-library/jest-dom/types/index.d.ts"
],
"compilerOptions": {
"jsx": "react",
"strict": true,
"rootDir": "./src",
"outDir": "./build",
"noImplicitAny": true,
"module": "ESNEXT",
"target": "ESNEXT",
"removeComments": true,
"allowJs": true,
"declaration": false,
"moduleResolution": "bundler",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"isolatedModules": true,
"sourceMap": true,
"lib": ["DOM", "DOM.Iterable", "ESNext", "WebWorker"],
"types": ["@types/wicg-file-system-access", "@types/chrome"],
"ignoreDeprecations": "6.0",
"forceConsistentCasingInFileNames": true,
"paths": {
"#domain/*": ["./src/domain/*"],
"#helpers/*": ["./src/helpers/*"],
"#enums/*": ["./src/enums/*"],
"#schema": ["./src/types/schema.d.ts"],
"#libs/*": ["./src/libs/*"],
"#infra/*": ["./src/infra/*"],
"#utils/*": ["./src/utils/*"],
"#eventHandlers/*": ["./src/eventHandlers/*"],
"#eventHandlers": ["./src/eventHandlers"],
"#mocks/*": ["./src/mocks/*"],
"#pages/*": ["./src/pages/*"],
"#assets/*": ["./src/assets/*"],
"#provider": ["./src/provider"],
"#monitor": ["./src/monitors/sentry.ts"],
"#mappers/*": ["./src/mappers/*"]
}
}
}