-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
36 lines (35 loc) · 1.02 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
/**
*
*/
{
"compilerOptions": {
"noUncheckedIndexedAccess": true,
"strict": true,
"baseUrl": ".",
"module": "ESNext",
"moduleResolution": "Bundler",
"paths": {
"~/*": ["./src/*"],
"@sdkit/*": ["./src/packages/sdkit/src/*"],
"@kaitype/*": ["./src/projects/kaitype/*"]
},
"resolveJsonModule": true,
"noEmit": true,
"allowJs": true,
"checkJs": true,
"plugins": [{ "name": "next" }],
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"jsx": "preserve",
"lib": ["dom", "dom.iterable", "ESNext"],
"moduleDetection": "force",
"target": "ESNext",
"incremental": true,
"tsBuildInfoFile": "./.cache/.tsbuildinfo",
"skipLibCheck": true
},
"include": ["**/*.ts", "**/*.tsx", "next-env.d.ts", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}