-
Notifications
You must be signed in to change notification settings - Fork 226
Expand file tree
/
Copy pathtsconfig-cli.json
More file actions
59 lines (59 loc) · 1.77 KB
/
Copy pathtsconfig-cli.json
File metadata and controls
59 lines (59 loc) · 1.77 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
48
49
50
51
52
53
54
55
56
57
58
59
{
"extends": "./tsconfig",
"watchOptions": {
"excludeDirectories": ["./**/node_modules", "./dist", "./release"]
},
"compilerOptions": {
// "skipLibCheck": true,
// NODENEXT works because "typed-redux-saga/macro" in WebPack Babel config is not used when compiling from the CLI with tsc or tsgo
"module": "esnext", // 99
// "module": "ES2023", // 6
// "module": "preserve", // 200
// "module": "nodenext", // 199
// "moduleResolution": "nodenext", // 99
// "moduleResolution": "node", // 100
"moduleResolution": "bundler", // 100
"diagnostics": false,
"extendedDiagnostics": false,
"traceResolution": false,
"noEmit": true,
"listEmittedFiles": true,
"listFiles": false,
"pretty": false,
"sourceMap": false,
"inlineSources": false,
"resolveJsonModule": false,
// "esModuleInterop": true,
// allowSyntheticDefaultImports: true,
// "types": ["./node_modules/marked-emoji/src/"],
// "typeRoots": ["./node_modules/marked-emoji/src/"]
},
// "files": [
// "typings.d.ts",
// // "./node_modules/marked-emoji/src/index.d.cts"
// ],
// "include": [
// "./src/**/*",
// "./test/**/*",
// // "./node_modules/marked-emoji/src/index.d.ts"
// ],
// "exclude": [
// "node_modules",
// "./node_modules",
// "./node_modules/*",
// "./node_modules/@types/node/index.d.ts"
// ],
// "exclude": ["node_modules/slugify/slugify.d.ts", "slugify.d.ts"]
// ------
// ATTTEMPT TO EXCLUDE LIB.DOM FAILS BECAUSE:
// node_modules/xpath/xpath.d.ts
// node_modules/@types/jsdom/base.d.ts
// and LIB.DOM.ITERABLE:
// node_modules/@types/jsdom/base.d.ts
// "include": [],
// "files": [
// "./src/main.ts",
// "./src/typings/lunr.d.ts",
// "./typings.d.ts",
// ],
}