-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathtsconfig.base.json
30 lines (30 loc) · 1.05 KB
/
tsconfig.base.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
{
"compileOnSave": true,
"compilerOptions": {
"incremental": true,
"target": "ES2015",
"module": "CommonJS",
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strict": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"rootDir": "./src",
"outDir": "dist/cjs",
"declarationDir": "dist/types",
"composite": true,
"traceResolution": false /* Report module resolution log messages. */,
"listEmittedFiles": false /* Print names of generated files part of the compilation. */,
"listFiles": false /* Print names of files part of the compilation. */,
"pretty": true,
"noUnusedLocals": true,
"lib": ["ESNext", "DOM"]
},
"exclude": [".git", ".github", "node_modules", "dist", "test"],
"types": ["node"],
"$schema": "https://json.schemastore.org/tsconfig"
}