-
Notifications
You must be signed in to change notification settings - Fork 618
Expand file tree
/
Copy pathtsconfig.build.json
More file actions
47 lines (47 loc) · 1.22 KB
/
Copy pathtsconfig.build.json
File metadata and controls
47 lines (47 loc) · 1.22 KB
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
45
46
47
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "./tsconfig.json",
"compilerOptions": {
"declaration": true,
"emitDeclarationOnly": true,
"outDir": "./dist",
"noEmit": false,
"rootDir": ".",
"types": ["bun", "node"],
"skipLibCheck": true,
"jsx": "preserve",
"jsxImportSource": "@opentui/solid",
"module": "ESNext",
"moduleResolution": "bundler",
"baseUrl": ".",
"paths": {
"@opentui/core": ["../core/dist"],
"@opentui/core/*": ["../core/dist/*"]
}
},
"include": [
"index.ts",
"components.ts",
"src/**/*",
"jsx-runtime.d.ts",
"jsx-dev-runtime.d.ts",
// See the comment below
"scripts/solid-plugin.ts",
"scripts/solid-transform.ts",
"scripts/runtime-plugin-support.ts",
"scripts/runtime-plugin-support-configure.ts"
],
"exclude": [
"**/*.test.ts",
"**/*.spec.ts",
"examples/**/*",
"node_modules/**/*",
"../core/**/*",
// We have to explicitly list each script to exclude rather than using "scripts/**/*"
// "exclude" is applied after "include"
// See: https://www.typescriptlang.org/tsconfig#exclude
"scripts/build.ts",
"scripts/publish.ts",
"scripts/preload.ts"
]
}