forked from TrellisCommerce/react-components
-
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) · 672 Bytes
/
tsconfig.json
File metadata and controls
28 lines (28 loc) · 672 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
{
"compilerOptions": {
"outDir": "./dist/esm/",
"noImplicitAny": true,
"module": "esnext",
"target": "ES6",
"jsx": "react",
"allowJs": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"esModuleInterop": true,
"lib": ["dom", "dom.iterable", "esnext"],
"skipLibCheck": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"incremental": true,
"isolatedModules": true
},
"exclude": [
"node_modules",
"stories/*",
"public",
"tailwind.config.js",
"dist/*"
],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx","jest-setup.ts","__tests__/*"]
}