-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtsconfig.json
29 lines (29 loc) · 1.03 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
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"baseUrl": ".",
"noEmit": true,
"jsx": "react",
"paths": {
"@popup/*": ["./src/popup/*"],
"@background/*": ["./src/background/*"],
"@content/*": ["./src/content/*"],
"@inject/*": ["./src/inject/*"],
"@shared/*": ["./src/shared/*"],
"@assets/*": ["./src/assets/*"],
"@wallet-api": ["./src/wallet-api/index.ts"],
"@wallet-api/*": ["./src/wallet-api/*"],
"@messaging": ["./src/messaging/index.ts"],
"@concordium/browser-wallet-api-helpers": ["../browser-wallet-api-helpers/src"],
"wallet-common-helpers": ["./src/wallet-common-helpers"]
}
},
"ts-node": {
"compilerOptions": {
"module": "CommonJS"
}
},
"include": ["./src/**/*.ts", "./src/**/*.tsx"],
"exclude": ["./../../node_modules/**/*", "./dist/**/*"],
"files": ["../browser-wallet-api-helpers/src/extend-window.ts"]
}