-
-
Notifications
You must be signed in to change notification settings - Fork 146
Expand file tree
/
Copy pathtsconfig.json
More file actions
34 lines (34 loc) · 882 Bytes
/
tsconfig.json
File metadata and controls
34 lines (34 loc) · 882 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
{
"compilerOptions": {
"target": "es2020",
"lib": ["ES2020", "dom"],
"module": "commonjs",
"removeComments": false,
"noImplicitAny": false,
"strictNullChecks": true,
"sourceMap": true,
"outDir": "lib",
"declaration": true,
"skipLibCheck": true,
"noEmitHelpers": true,
"importHelpers": true,
"moduleResolution": "node",
"types": ["node", "jest"]
},
"include": ["src"],
"exclude": ["src/**/__tests__", "node_modules", "lib", "es6", "es2020", "esm", "docs", "README.md"],
"typedocOptions": {
"entryPoints": [
"src/index.ts",
"src/cas/types.ts",
"src/crud/types.ts",
"src/crud-to-cas/index.ts",
"src/fsa/index.ts",
"src/fsa-to-crud/index.ts",
"src/fsa-to-node/index.ts",
"src/node-to-crud/index.ts",
"src/node-to-fsa/index.ts"
],
"out": "typedocs"
}
}