-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.app.json
37 lines (37 loc) · 1001 Bytes
/
tsconfig.app.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
{
"$schema": "http://json.schemastore.org/tsconfig",
"compilerOptions": {
"noEmit": true,
"target": "ES2022",
"module": "Preserve",
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"rootDirs": [".", "./.react-router/types"],
"types": ["vite/client", "vitest/globals", "@react-router/node"],
"jsx": "react-jsx",
"isolatedModules": true,
"verbatimModuleSyntax": true,
"useDefineForClassFields": true,
"allowImportingTsExtensions": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noUncheckedSideEffectImports": true,
"skipLibCheck": true,
"allowJs": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": ".",
"paths": {
"~/*": ["./app/*"]
}
},
"include": [
"**/*.ts",
"**/*.tsx",
"**/.server/**/*.ts",
"**/.server/**/*.tsx",
"**/.client/**/*.ts",
"**/.client/**/*.tsx",
"./.react-router/types/**/*"
],
"exclude": ["node_modules", "./integration"]
}