-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
24 lines (24 loc) · 835 Bytes
/
tsconfig.json
File metadata and controls
24 lines (24 loc) · 835 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": {
"module": "es6",
"noEmitOnError": true,
"outDir": "packages/core/dist",
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"target": "ES6",
"moduleResolution": "nodenext",
"paths": {
"@tseuse/shared": ["./packages/shared/index.ts"],
"@tseuse/shared/*": ["./packages/shared/*"],
"@tseuse/core": ["./packages/core/index.ts"],
"@tseuse/core/*": ["./packages/core/*"],
"@tseuse/vue-hooks": ["./packages/vue-hooks/index.ts"],
"@tseuse/vue-hooks/*": ["./packages/vue-hooks/*"],
"@tseuse/react-hooks": ["./packages/react-hooks/index.ts"],
"@tseuse/react-hooks/*": ["./packages/react-hooks/*"]
}
},
"include": ["./packages/**/*"],
"exclude": ["node_modules", "**/**/*.md", "**/dist", "dist"]
}