-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (28 loc) · 1.67 KB
/
tsconfig.json
File metadata and controls
28 lines (28 loc) · 1.67 KB
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
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"lib": ["ESNext", "DOM"],
"jsx": "preserve",
"jsxImportSource": "solid-js",
"paths": {
"@/*": ["./src/*"],
"solid-motion": ["./src/index.tsx"],
"framer-motion/dist/es/utils/reduced-motion/state.mjs": ["./node_modules/framer-motion/dist/es/utils/reduced-motion/state.mjs"],
"framer-motion/dist/es/render/html/HTMLVisualElement.mjs": ["./node_modules/framer-motion/dist/es/render/html/HTMLVisualElement.mjs"],
"framer-motion/dist/es/render/svg/SVGVisualElement.mjs": ["./node_modules/framer-motion/dist/es/render/svg/SVGVisualElement.mjs"],
"framer-motion/dist/es/projection/node/state.mjs": ["./node_modules/framer-motion/dist/es/projection/node/state.mjs"],
"framer-motion/dist/es/projection/styles/scale-correction.mjs": ["./node_modules/framer-motion/dist/es/projection/styles/scale-correction.mjs"],
"framer-motion/dist/es/projection/styles/scale-border-radius.mjs": ["./node_modules/framer-motion/dist/es/projection/styles/scale-border-radius.mjs"],
"framer-motion/dist/es/projection/styles/scale-box-shadow.mjs": ["./node_modules/framer-motion/dist/es/projection/styles/scale-box-shadow.mjs"],
"framer-motion/dist/es/projection/node/HTMLProjectionNode.mjs": ["./node_modules/framer-motion/dist/es/projection/node/HTMLProjectionNode.mjs"],
"framer-motion/dist/es/render/store.mjs": ["./node_modules/framer-motion/dist/es/render/store.mjs"],
"framer-motion/dist/es/utils/delay.mjs": ["./node_modules/framer-motion/dist/es/utils/delay.mjs"]
}
},
"include": ["src", "example"],
"references": [
{
"path": "./tsconfig.node.json"
}
]
}