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
48
49
|
{
"extends": "./node_modules/gts/tsconfig-google.json",
"compilerOptions": {
"lib": ["dom", "es2019"],
"module": "esnext",
/* Output options */
"noEmit": true,
/* Strict type-checking options */
"allowJs": true,
"strict": true,
/* tsc lint options */
"noImplicitReturns": true,
/* These should be caught by eslint instead */
"noFallthroughCasesInSwitch": false,
"noUnusedLocals": false,
"allowUnreachableCode": true,
/* Module Options */
"moduleResolution": "node",
"esModuleInterop": false,
"skipLibCheck": true,
},
"include": [
"src/**/*.ts",
"src/external/**/*.js",
],
"typedocOptions": {
"entryPointStrategy": "expand",
"entryPoints": [
"src/common/framework/",
"src/common/util/",
"src/webgpu/",
],
"exclude": [
"**/*.spec.ts",
"**/*.html.ts",
"src/*/listing.ts",
"src/webgpu/util/device_pool.ts",
],
"excludeInternal": true,
"excludeProtected": true,
"excludePrivate": true,
"validation": {
"invalidLink": true,
"notExported": false,
},
"readme": "./docs/helper_index.txt",
"out": "docs/tsdoc/"
}
}
|