-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
31 lines (31 loc) · 935 Bytes
/
tsconfig.json
File metadata and controls
31 lines (31 loc) · 935 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
{
"include": [
"**/*.ts"
// "commands/*.ts",
// "common/*.ts",
// "compiler/*.ts",
// "config/*.ts",
// "index.ts",
],
"exclude": ["node_modules", "lib"],
"compilerOptions": {
"resolveJsonModule": true, // 允许引入json
"target": "esnext",
"module": "commonjs",
"declaration": true,
"removeComments": false,
/* Strict Type-Checking Options */
"strict": true /* Enable all strict type-checking options. */,
"noImplicitAny": false,
"noImplicitThis": false,
// output
"outDir": "lib",
"baseUrl": ".",
/* Module Resolution Options */
"moduleResolution": "node",
"esModuleInterop": true,
/* Advanced Options */
"skipLibCheck": true /* Skip type checking of declaration files. */,
"forceConsistentCasingInFileNames": true
}
}