forked from ethereumfollowprotocol/app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
47 lines (47 loc) · 1.38 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
{
"schema": "https://json.schemastore.org/tsconfig.json",
"display": "Default",
"compilerOptions": {
"strict": true,
"baseUrl": ".",
"noEmit": true,
"allowJs": true,
"checkJs": true,
"jsx": "preserve",
"target": "ESNext",
"module": "ESNext",
"incremental": true,
"skipLibCheck": true,
"paths": {
"#/*": ["./src/*"],
"~env": ["./env.ts"]
},
"noUnusedLocals": true,
"alwaysStrict": true,
"esModuleInterop": true,
"isolatedModules": true,
"strictNullChecks": true,
"resolveJsonModule": true,
"verbatimModuleSyntax": true,
"moduleResolution": "Bundler",
"useDefineForClassFields": true,
"allowArbitraryExtensions": true,
"noUncheckedIndexedAccess": true,
"useUnknownInCatchVariables": true,
"allowImportingTsExtensions": true,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true,
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"forceConsistentCasingInFileNames": true,
"noPropertyAccessFromIndexSignature": false,
"types": ["node", "typed-query-selector/strict"],
"plugins": [
{
"name": "next"
}
]
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "**/*.jsx", ".next/types/**/*.ts", ""],
"files": ["biome.json", "environment.d.ts", "next.config.mjs", "env.ts"],
"exclude": ["node_modules", "./src/lib/generated", "_"]
}