forked from dstark5/gnews-scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
21 lines (21 loc) · 840 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"compilerOptions": {
"target": "ES6",
"module": "ESNext",
"baseUrl": "./src",
"outDir": "./build",
"moduleResolution":"node",
"noEmitOnError": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitThis": false,
"useUnknownInCatchVariables": false,
"skipLibCheck": true ,
"removeComments": true,
"declaration":true,
"sourceMap": true
},
"include": ["src"],
"exclude": [ "node_modules","test"]
}