-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.app.typecheck.json
More file actions
44 lines (44 loc) · 940 Bytes
/
Copy pathtsconfig.app.typecheck.json
File metadata and controls
44 lines (44 loc) · 940 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
33
34
35
36
37
38
39
40
41
42
43
44
{
"extends": "./tsconfig.app.json",
"compilerOptions": {
"composite": true,
"noEmit": false,
"declaration": true,
"emitDeclarationOnly": true,
"outDir": ".tmp/typecheck/app",
"rootDir": "."
},
"references": [
{ "path": "./tsconfig.core.typecheck.json" }
],
"include": [
"app/**/*.ts",
"app/**/*.tsx",
"components/**/*.ts",
"components/**/*.tsx",
"lib/**/*.ts",
"lib/**/*.tsx",
"tests/**/*.ts",
"tests/**/*.tsx",
"types/compat/**/*.d.ts",
"types/compat/**/*.d.cts",
"types/jsx-global.d.ts",
"data/**/*.ts",
"data/**/*.json",
"proxy.ts",
"next-env.d.ts",
"next.config.ts",
"tailwind.config.ts"
],
"exclude": [
"node_modules",
".next",
"scripts/**",
"prisma/scripts/**",
"tests/fixtures/**",
"tests/engine/optimality/**",
"tests/node/**",
"tests/guardrails/**",
"lib/engine/optimality/**"
]
}