forked from streamich/memfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
32 lines (32 loc) · 816 Bytes
/
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
{
"compilerOptions": {
"target": "es2017",
"lib": ["ES2017", "dom"],
"module": "commonjs",
"removeComments": false,
"noImplicitAny": false,
"strictNullChecks": true,
"sourceMap": true,
"outDir": "lib",
"declaration": true,
"skipLibCheck": true,
"noEmitHelpers": true,
"importHelpers": true
},
"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/types.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"
}
}