-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
37 lines (36 loc) · 1.3 KB
/
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
34
35
36
37
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"checkJs": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"jsx": "preserve",
"lib": ["dom", "webworker", "es2023"],
"module": "esnext",
"moduleResolution": "node",
"noEmit": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"paths": {
"learn-and-earn-submodule/*": ["./learn-and-earn-submodule/*"]
},
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"strictNullChecks": false,
"target": "esnext",
"typeRoots": ["./types", "./node_modules/@types"],
"baseUrl": ".",
"sourceMap": true,
"incremental": true,
"inlineSources": true,
// Set `sourceRoot` to `/` to strip the build path prefix from
// generated source code references. This allows Sentry to match source files
// relative to your source root folder.
"sourceRoot": "/"
},
"exclude": [".github", ".next", "_content_cache", "node_modules", "public"],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "**/*.js", "./learn-and-earn-submodule/**/*.tsx"]
}