-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
41 lines (40 loc) · 1.09 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
38
39
40
41
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"checkJs": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"jsx": "preserve",
"lib": [
"dom",
"es2017"
],
"module": "esnext",
"moduleResolution": "node",
"noEmit": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"noImplicitAny": false,
"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"]
}