-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.json
More file actions
27 lines (27 loc) · 858 Bytes
/
tsconfig.json
File metadata and controls
27 lines (27 loc) · 858 Bytes
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
{
"compilerOptions": {
"target": "ES2020",
"lib": ["dom", "dom.iterable", "esnext"],
"jsx": "react-jsx",
"module": "esnext",
"moduleResolution": "node",
"allowJs": true,
"esModuleInterop": true,
"strict": true,
"baseUrl": ".",
"types": ["jasmine", "node", "@testing-library/react"],
"paths": {
"@/components/*": ["src/assets/ts/components/*"],
"@/features/*": ["src/assets/ts/features/*"],
"@/scss/*": ["src/assets/scss/*"],
"@/vendor/*": ["src/lib/vendor/*"],
"@/store": ["src/assets/ts/store.ts"],
"@/main": ["src/assets/ts/main.ts"],
"@/types/*": ["src/assets/ts/types/*"],
"@/utils/*": ["src/assets/ts/utils/*"],
"@/constants": ["src/assets/ts/constants.ts"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "src/test/**/*"]
}