forked from clerk/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
33 lines (33 loc) · 927 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
30
31
32
33
{
"compilerOptions": {
"allowJs": false,
"baseUrl": "src",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"module": "esnext",
"moduleResolution": "Node",
"noEmit": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"sourceMap": false,
"strict": true,
"target": "ES2019",
"useUnknownInCatchVariables": false,
"declaration": false,
"jsx": "react-jsx",
"jsxImportSource": "@emotion/react"
// "noUncheckedIndexedAccess": true // TODO: Enable and progressively fix related errors
},
"include": [
"src/index.ts",
"src/index.browser.ts",
"src/index.headless.ts",
"src/index.headless.browser.ts",
"src/**/*.d.ts"
],
"exclude": ["node_modules", "**/*.test.ts", "**/*.test.tsx"]
}