-
Notifications
You must be signed in to change notification settings - Fork 210
Expand file tree
/
Copy pathtsconfig-cli.json
More file actions
46 lines (46 loc) · 1.38 KB
/
tsconfig-cli.json
File metadata and controls
46 lines (46 loc) · 1.38 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
{
"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": "ES2020", // 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"
// ],
}