-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
35 lines (35 loc) · 864 Bytes
/
tsconfig.json
File metadata and controls
35 lines (35 loc) · 864 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
25
26
27
28
29
30
31
32
33
34
35
{
"compilerOptions": {
"jsx": "react-jsx",
"esModuleInterop": true,
"types": ["vitest/globals", "node"],
"lib": ["DOM", "ES2022"],
"strict": false,
"resolveJsonModule": true,
"noImplicitAny": true,
"allowSyntheticDefaultImports": true,
"module": "esnext",
"moduleResolution": "bundler",
"skipLibCheck": true,
"target": "es6",
"noEmit": true,
"paths": {
"~tests-utils": ["./packages/react/tests/utils.ts"],
"@junipero/core": ["./packages/core/lib"],
"@junipero/react": ["./packages/react/lib"],
"@junipero/hooks": ["./packages/hooks/lib"],
"@junipero/tailwind-plugin": ["./packages/tailwind-plugin/lib"],
}
},
"include": [
"**/*.ts",
"**/*.tsx",
".storybook/*.ts",
"./global.d.ts",
],
"exclude": [
"dist",
".turbo",
"node_modules"
]
}