-
Notifications
You must be signed in to change notification settings - Fork 448
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (30 loc) · 904 Bytes
/
tsconfig.json
File metadata and controls
30 lines (30 loc) · 904 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
{
"compilerOptions": {
"allowJs": false,
"declaration": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"jsx": "react-jsx",
"jsxImportSource": "@emotion/react",
"lib": ["dom", "dom.iterable", "es2020", "es2021.intl"],
"module": "esnext",
"moduleResolution": "Bundler",
"noEmit": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"sourceMap": false,
"strict": true,
"target": "ES2019",
"useUnknownInCatchVariables": false,
"paths": {
"@/*": ["./src/*"]
},
"rootDir": "./src",
"types": ["@rspack/core/module", "cloudflare-turnstile"]
},
"include": ["src", "vitest.config.mts", "vitest.setup.mts", "../shared/internal/clerk-js/componentGuards.ts"]
}