-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
33 lines (33 loc) · 946 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": {
"incremental": true,
"outDir": "./dist",
"baseUrl": ".",
"moduleResolution": "node",
"module": "commonjs",
"target": "es6",
"sourceMap": false,
"lib": ["es2017", "DOM"],
"esModuleInterop": true,
"alwaysStrict": true,
"noImplicitAny": false,
"noUnusedLocals": false,
// Ensure that .d.ts files are created by tsc, but not .js files
"declaration": true,
// Ensure that Babel can safely transpile files in the TypeScript project
"isolatedModules": true,
"removeComments": false,
"noLib": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowJs": false,
"rootDir": "."
},
"references": [
{ "path": "libraries/pickk-pay-sdk" },
{ "path": "services/pickk-pay-client" },
{ "path": "services/pickk-pay-server" }
],
"include": ["**/*.ts", "*.tsx"],
"exclude": ["node_modules", "dist", "*.d.ts"]
}