main
json 40 lines 718 Bytes
Raw
1 {
2 "compilerOptions": {
3 "target": "ES2015",
4 "lib": [
5 "dom",
6 "dom.iterable",
7 "esnext"
8 ],
9 "types": [
10 "react/experimental"
11 ],
12 "allowJs": true,
13 "skipLibCheck": true,
14 "strict": true,
15 "forceConsistentCasingInFileNames": true,
16 "noEmit": true,
17 "esModuleInterop": true,
18 "module": "esnext",
19 "moduleResolution": "node",
20 "resolveJsonModule": true,
21 "isolatedModules": true,
22 "jsx": "preserve",
23 "incremental": true,
24 "plugins": [
25 {
26 "name": "next"
27 }
28 ]
29 },
30 "include": [
31 "next-env.d.ts",
32 "**/*.ts",
33 "**/*.tsx",
34 ".next/types/**/*.ts"
35 ],
36 "exclude": [
37 "node_modules",
38 "../../../**"
39 ]
40 }