-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtsconfig.json
More file actions
executable file
·26 lines (26 loc) · 921 Bytes
/
tsconfig.json
File metadata and controls
executable file
·26 lines (26 loc) · 921 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
{
"compilerOptions": {
"baseUrl": ".",
"target": "ES2019",
"module": "ESNext",
"lib": ["ESNext", "dom", "dom.iterable"],
"moduleResolution": "node",
"esModuleInterop": true,
"strict": true,
"strictNullChecks": true,
"strictPropertyInitialization": false,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"experimentalDecorators": true,
"resolveJsonModule": true,
"paths": {
"/@/*": ["src/*"],
"@e2e/*": ["e2e/*"],
"@cosui/cosmic/*": ["packages/cosmic/*"],
"@cosui/cosmic-card/*": ["packages/cosmic-card/*"],
"@cosui/cosmic-dqa/*": ["packages/cosmic-dqa/*"]
}
},
"include": [".eslintrc.js", "**/*.ts", "**/*.d.ts"],
"exclude": ["**/*.spec.ts", "**/*.test.ts", "**/dist/**", "**/node_modules/**", "**/*.less", "**/doc/**"]
}