-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
35 lines (35 loc) · 1.07 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
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
/* Visit https://aka.ms/tsconfig to read more about this file */
/* Language and Environment */
"target": "es2022" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
"lib": [
"DOM",
"DOM.Iterable",
"esnext"
] /* Specify a set of bundled library declaration files that describe the target runtime environment. */,
/* Modules */
"module": "commonjs" /* Specify what module code is generated. */,
"resolveJsonModule": true /* Enable importing .json files. */,
"moduleResolution": "node" /* Specify how TypeScript looks up a file from a given module specifier. */,
"noEmit": true,
"incremental": true,
"isolatedModules": true,
"jsx": "preserve",
"types": ["react", "jest", "node"],
"plugins": [
{
"name": "next"
}
]
},
"include": [
"next-env.d.ts",
"./types/*.d.ts",
".next/types/**/*.ts",
"**/*.ts",
"**/*.tsx"
],
"exclude": ["node_modules"]
}