-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (28 loc) · 926 Bytes
/
tsconfig.json
File metadata and controls
28 lines (28 loc) · 926 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
{
"extends": "@tsconfig/recommended/tsconfig.json",
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"jsx": "preserve",
"lib": ["dom", "dom.iterable", "esnext", "ESNext.Intl", "ES2018.Intl", "es2017"],
"moduleResolution": "node",
"baseUrl": ".",
"strict": true,
"allowJs": true,
"noEmit": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"skipLibCheck": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"isolatedModules": true,
"removeComments": false,
"preserveConstEnums": true,
"sourceMap": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"incremental": true
},
"exclude": [".next", "next.config.js", "*.spec.*", "dist", "node_modules"],
"include": ["next-env.d.ts", "sentry.*.config.ts", "src/*.ts", "src/**/*.ts", "src/**/*.tsx", "lib/*.ts", "lib/**/*.ts"]
}