-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
33 lines (33 loc) · 878 Bytes
/
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
{
"compilerOptions": {
"outDir": "build",
"lib": ["es2017"],
"sourceMap": true,
"noImplicitAny": true,
"strictNullChecks": true,
"alwaysStrict": true,
"strictFunctionTypes": true,
"strictBindCallApply": false,
"strictPropertyInitialization": false,
"module": "commonjs",
"moduleResolution": "node",
"target": "es2017",
"resolveJsonModule": true,
"esModuleInterop": true,
"baseUrl": ".",
"paths": {
"@scrape-pages": ["src/index"],
"@scrape-pages/*": ["src/*"],
"@test/*": ["test/*"]
},
"plugins": [
{
"transform": "typescript-is/lib/transform-inline/transformer",
"ignoreFunctions": true,
"ignoreMethods": true
},
{ "transform": "typescript-transform-paths", "afterDeclarations": true }
]
},
"include": ["src/**/*.ts", "test/**/*.ts"]
}