-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
39 lines (39 loc) Β· 1.02 KB
/
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
33
34
35
36
37
38
39
// global tsconfig as union version for library and demo
{
"compilerOptions": {
"baseUrl": ".",
"outDir": "./build",
"target": "ES2018",
"sourceMap": true,
"moduleResolution": "Node",
"module": "CommonJS",
"declaration": true, // generate .d.ts files (declaration files) which contain types of the code
"skipLibCheck": true, // because of errors in node libs
"esModuleInterop": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"traceResolution": false,
"listEmittedFiles": false,
"listFiles": false,
"pretty": true,
"lib": ["ES2018", "DOM"],
"typeRoots": [
"node_modules/@types",
"src/lib/types",
],
"paths": {
"*": [
"node_modules/*",
"src/lib/types/*",
],/*
"gomshal": [
"src/lib/index", // for reference to gomshal in demo
] */
},
},
"include": [
"./src/**/*.ts",
],
}