-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathtsconfig.json
47 lines (47 loc) · 1.47 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"compilerOptions": {
"target": "ESNext",
"module": "ES2022",
"moduleResolution": "bundler",
"noErrorTruncation": true,
"incremental": true,
"tsBuildInfoFile": ".tsbuildinfo",
"strict": true,
"noEmit": true,
"allowImportingTsExtensions": true,
"skipLibCheck": true, // needed because of some stupid problem with vitest
"paths": {
"wasm-to-typescript-types": [
"./packages/wasm-to-typescript-types/index.d.ts",
],
"conformance-tests/*": [
"./packages/conformance-tests/*",
],
"ts-type-math": [
"./packages/ts-type-math/index.d.ts",
],
"playground/*": [
"./packages/playground/*",
],
}
},
"exclude": [
//
//
"packages/playground/doom/*",
"packages/playground/add/*",
"packages/playground/conway-stateless/*", // this can always be off because the file has no dependencies
"packages/playground/conway-stateful/*", // this can always be off because the file has no dependencies
"packages/playground/evaluate/results/result-*",
"packages/playground/evaluate/stats/*",
"packages/playground/evaluate/start.ts",
"packages/playground/evaluate/restart/*",
//
// "packages/conformance-tests/from-c/*",
// "packages/conformance-tests/from-wat/*",
// "packages/conformance-tests/from-wat-single/single-i32*",
// "packages/conformance-tests/from-wat-single/single-i64*",
// "packages/ts-type-math/tests",
//
]
}