forked from Popmotion/popmotion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
36 lines (36 loc) · 1.11 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
{
"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"]
}