forked from syhner/next-kickstart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
63 lines (50 loc) · 1.21 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
52
53
54
55
56
57
58
59
60
61
62
63
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
/* Type Checking */
"noUncheckedIndexedAccess": true, // Increases type-safety
"strict": true,
/* Modules */
"module": "esnext",
"moduleResolution": "node",
"paths": {
"~/*": ["./src/*"] // Alias for absolute imports
},
"resolveJsonModule": true,
/* Emit */
"noEmit": true,
/* JavaScript Support */
"allowJs": true,
/* Editor Support */
"plugins": [
{
"name": "next"
}
],
/* Interop Constraints */
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
/* Backwards Compatibility */
/* Language and Environment */
"jsx": "preserve",
"lib": ["dom", "dom.iterable", "esnext"],
"target": "ES2015", // Drizzle Studio requires >=ES2015
/* Compiler Diagnostics */
/* Projects */
"incremental": true,
/* Output Formatting */
/* Completeness */
"skipLibCheck": true
/* Command Line */
/* Watch Options */
},
"include": [
"**/*.mjs",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"next-env.d.ts"
],
"exclude": ["node_modules"]
}