-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
51 lines (51 loc) · 1.18 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Default",
"compilerOptions": {
"baseUrl": "src",
"paths": {
"@/components/*": ["./components/*"],
"@/contents/*": ["./contents/*"],
"@/lib/*": ["./lib/*"],
"@/styles/*": ["./styles/*"],
"@/types/*": ["./types/*"],
"@/utils/*": ["./utils/*"]
},
"composite": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"allowImportingTsExtensions": true,
"inlineSources": false,
"isolatedModules": true,
"moduleResolution": "Bundler",
"noUnusedLocals": true,
"noUnusedParameters": true,
"preserveWatchOutput": true,
"skipLibCheck": true,
"allowJs": true,
"checkJs": true,
"noUncheckedIndexedAccess": true,
"strictNullChecks": true,
"plugins": [{ "name": "next" }],
"declaration": false,
"declarationMap": false,
"incremental": true,
"jsx": "preserve",
"lib": ["dom", "dom.iterable", "esnext"],
"module": "esnext",
"noEmit": true,
"resolveJsonModule": true,
"strict": true,
"target": "ES6"
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"**/*.cjs",
"**/*.js",
"**/*.json",
".next/types/**/*.ts"
],
"exclude": ["node_modules"]
}