-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathtsconfig.base.json
70 lines (70 loc) · 2.68 KB
/
tsconfig.base.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"typeRoots": ["types/global.d.ts", "node_modules/@types"],
"sourceMap": true,
"declaration": false,
"module": "es2020",
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "ES6",
"lib": ["WebWorker", "dom.iterable", "dom", "esnext"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"strictNullChecks": true,
"baseUrl": ".",
"paths": {
"@webb-tools/abstract-api-provider": [
"libs/abstract-api-provider/src/index.ts"
],
"@webb-tools/abstract-api-provider/*": [
"libs/abstract-api-provider/src/*"
],
"@webb-tools/api-provider-environment": [
"libs/api-provider-environment/src/index.ts"
],
"@webb-tools/api-provider-environment/*": [
"libs/api-provider-environment/src/*"
],
"@webb-tools/browser-utils": ["libs/browser-utils/src/index.ts"],
"@webb-tools/browser-utils/*": ["libs/browser-utils/src/*"],
"@webb-tools/dapp-config": ["libs/dapp-config/src/index.ts"],
"@webb-tools/dapp-config/*": ["libs/dapp-config/src/*"],
"@webb-tools/dapp-types": ["libs/dapp-types/src/index.ts"],
"@webb-tools/dapp-types/*": ["libs/dapp-types/src/*"],
"@webb-tools/icons": ["libs/icons/src/index.ts"],
"@webb-tools/icons/*": ["libs/icons/src/*"],
"@webb-tools/polkadot-api-provider": [
"libs/polkadot-api-provider/src/index.ts"
],
"@webb-tools/polkadot-api-provider/*": [
"libs/polkadot-api-provider/src/*"
],
"@webb-tools/react-components": ["libs/react-components/src/index.ts"],
"@webb-tools/react-components/*": ["libs/react-components/src/*"],
"@webb-tools/tailwind-preset": ["libs/tailwind-preset/index.js"],
"@webb-tools/tangle-shared-ui": ["libs/tangle-shared-ui/src/index.ts"],
"@webb-tools/tangle-shared-ui/*": ["libs/tangle-shared-ui/src/*"],
"@webb-tools/web3-api-provider": ["libs/web3-api-provider/src/index.ts"],
"@webb-tools/web3-api-provider/*": ["libs/web3-api-provider/src/*"],
"@webb-tools/webb-ui-components": [
"libs/webb-ui-components/src/index.ts"
],
"@webb-tools/webb-ui-components/*": ["libs/webb-ui-components/src/*"]
}
},
"include": [
"./types/global.d.ts",
"./libs/**/src/**/*.{js,jsx,ts,tsx}",
"./apps/**/src/**/*.{js,jsx,ts,tsx}"
],
"exclude": ["node_modules", "tmp", "**/node_modules/*"]
}