forked from Meeco/js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
25 lines (25 loc) · 758 Bytes
/
tsconfig.json
File metadata and controls
25 lines (25 loc) · 758 Bytes
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
{
"compilerOptions": {
"baseUrl": ".",
"declaration": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"module": "commonjs",
"noImplicitAny": false,
"noUnusedLocals": true,
"outDir": "lib",
"skipLibCheck": true,
"strict": true,
"target": "es2017",
"paths": {
"@meeco/sdk": ["packages/sdk/src"],
"@meeco/cli": ["packages/cli/src"],
"@meeco/file-storage-node": ["packages/file-storage-node/src"],
"@meeco/file-storage-browser": ["packages/file-storage-browser/src"],
"@meeco/file-storage-common": ["packages/file-storage-common/src"]
}
},
"exclude": ["node_modules", "dist", "lib"],
}