-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathtsconfig.json
More file actions
24 lines (24 loc) · 830 Bytes
/
tsconfig.json
File metadata and controls
24 lines (24 loc) · 830 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
{
"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": {
"@cosmic/core/*": ["./packages/core/*"],
"@cosmic-module/*": ["./packages/module/*"],
"cosmic-ui": ["./node_modules/cosmic-ui-alpha"]
}
},
"include": ["**/*.vue", "**/*.ts", "**/*.tsx", "**/*.d.ts"],
"exclude": ["**/*.spec.ts", "**/*.test.ts", "**/dist/**", "**/node_modules/**"]
}