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