-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
32 lines (32 loc) · 919 Bytes
/
tsconfig.json
File metadata and controls
32 lines (32 loc) · 919 Bytes
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
{
"compilerOptions": {
"resolveJsonModule": true,
"alwaysStrict": true,
"jsx": "preserve",
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"lib": ["ES5", "ES2015", "ES2016", "dom", "dom.iterable", "ES2015.Promise"],
"module": "esnext",
"moduleResolution": "node",
"isolatedModules": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"target": "es5",
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"~/public/*": ["public/*"]
},
"pretty": true,
"types": ["vitest/globals", "@testing-library/jest-dom"],
"incremental": true
},
"exclude": ["node_modules"],
"include": ["next-env.d.ts", "./src/**/*", "**/*.ts", "**/*.tsx"],
"references": [{ "path": "./tsconfig.node.json" }]
}