forked from good-idea/sane-shopify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
29 lines (29 loc) · 828 Bytes
/
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
{
"compilerOptions": {
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true,
"target": "es5",
"declaration": true,
"importHelpers": true,
"module": "esnext",
"strict": true,
"moduleResolution": "node",
"sourceMap": true,
"jsx": "react",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitAny": false,
"removeComments": true,
"noLib": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": ["esnext", "dom"],
"types": ["jest", "node"],
"typeRoots": ["node_modules/@types"]
},
"exclude": ["test-frontend", "node_modules", "**/*.spec.ts"],
"include": ["./node_modules/@sanity/base/types/**/*.ts"]
}