-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
45 lines (45 loc) · 1.2 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
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "@tsconfig/next/tsconfig.json",
"compilerOptions": {
"noEmit": true,
"strict": true,
"esModuleInterop": true,
"moduleResolution": "nodenext",
"allowJs": false,
"target": "es2021",
"declaration": true,
"sourceMap": true,
"newLine": "lf",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": false,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"exactOptionalPropertyTypes": false,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noUnusedParameters": true,
"noUnusedLocals": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": "./",
"paths": {
"@seamapi/fake-devicedb": ["./src/index.ts"],
"fixtures/*": ["./test/fixtures/*"],
"lib/*": ["./src/lib/*"],
"nsm/*": ["./.nsm/*"],
"pages/*": ["./src/pages/*"]
}
},
"files": ["src/index.ts"],
"include": [
"src/**/*",
"next-env.d.ts",
".next/types/**/*.ts",
"test/**/*",
"examples/**/*",
"tsup.config.ts"
]
}