forked from dfinity/internet-identity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
29 lines (29 loc) · 887 Bytes
/
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
{
"include": ["src/showcase", "src/frontend"],
"compilerOptions": {
"allowJs": true,
"checkJs": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"lib": ["ES2021", "DOM"],
"module": "esnext",
"strict": true,
"target": "es2018",
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"types": ["node", "vite/client", "vitest/globals"],
"paths": {
"$generated": ["./src/frontend/generated"],
"$generated/*": ["./src/frontend/generated/*"],
"$src": ["./src/frontend/src"],
"$src/*": ["./src/frontend/src/*"],
"$showcase": ["./src/showcase/src"],
"$showcase/*": ["./src/showcase/src/*"]
}
},
"exclude": ["src/frontend/generated/*"]
}