-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
32 lines (32 loc) · 1.06 KB
/
Copy pathtsconfig.json
File metadata and controls
32 lines (32 loc) · 1.06 KB
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
{
"compilerOptions": {
"allowJs": true,
"esModuleInterop": true,
"incremental": true,
"isolatedModules": true,
"jsx": "preserve",
"lib": ["dom", "dom.iterable", "esnext"],
"module": "esnext",
"moduleResolution": "bundler",
"noEmit": true,
"paths": {
"@/*": ["./src/*"],
"@aragon/gov-ui-kit": ["./src/shared/lib/@aragon/gov-ui-kit"],
"@aragon/gov-ui-kit-original": ["./node_modules/@aragon/gov-ui-kit"],
"next/navigation": ["./src/shared/lib/nextNavigation"],
"next/navigation-original": ["./node_modules/next/navigation"]
},
"plugins": [
{
"name": "next"
}
],
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"strictNullChecks": true,
"target": "ES2017"
},
"exclude": ["node_modules", ".next/**/*", ".vercel/**/*", "coverage", "public/web-workers/**/*"],
"include": ["*.config.js", "*.config.ts", "*.config.mjs", ".eslintrc.js", "next-env.d.ts", "src", ".next/types/**/*.ts", "./src/shared/types/media.d.ts", "instrumentation-client.ts"]
}