forked from Popmotion/popmotion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
68 lines (68 loc) · 1.34 KB
/
tsconfig.json
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"compilerOptions": {
"module": "esnext",
"moduleResolution": "node",
"noImplicitAny": true,
"removeComments": true,
"preserveConstEnums": true,
"sourceMap": true,
"noUnusedLocals": true,
"target": "es5",
"watch": false,
"baseUrl": "./packages",
"paths": {
"@popmotion/easing": [
"./easing/lib"
],
"@popmotion/popcorn": [
"./popcorn/lib"
],
"animated-pose": [
"./animated-pose/lib"
],
"framesync": [
"./framesync/lib"
],
"popmotion": [
"./popmotion/lib"
],
"popmotion-pose": [
"./popmotion-pose/lib"
],
"pose-core": [
"./pose-core/lib"
],
"style-value-types": [
"./style-value-types/lib"
],
"stylefire": [
"./stylefire/lib"
],
"react-pose-core": [
"./react-pose-core/lib"
],
"react-pose": [
"./react-pose/lib"
],
"react-pose-text": [
"./react-pose-text/lib"
],
"vue-pose": [
"./vue-pose/lib"
]
},
"alwaysStrict": true,
"declaration": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"lib": [
"es5",
"es6",
"dom"
],
"skipLibCheck": true
},
"exclude": [
"**/*.test.ts"
]
}