-
Notifications
You must be signed in to change notification settings - Fork 316
Expand file tree
/
Copy pathtsconfig.json
More file actions
35 lines (35 loc) · 1.44 KB
/
Copy pathtsconfig.json
File metadata and controls
35 lines (35 loc) · 1.44 KB
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
{
"extends": "./packages/config/tsconfig.json",
"references": [
{ "path": "./tsconfig.npm.json" },
// Only list top-level projects here
{ "path": "./packages/polyfills/tsconfig.json" },
{ "path": "./packages/mask/tsconfig.json" },
{ "path": "./packages/injected-script/main/tsconfig.json" },
// Tests
{ "path": "./packages/base/tests/tsconfig.json" },
{ "path": "./packages/backup-format/tests/tsconfig.json" },
{ "path": "./packages/encryption/tests/tsconfig.json" },
{ "path": "./packages/theme/tests/tsconfig.json" },
{ "path": "./packages/typed-message/tests/tsconfig.json" },
{ "path": "./packages/shared-base/tests/tsconfig.json" },
{ "path": "./packages/web3-shared/base/tests/tsconfig.json" },
{ "path": "./packages/web3-shared/evm/tests/tsconfig.json" },
{ "path": "./packages/web3-shared/solana/tests/tsconfig.json" },
{ "path": "./packages/web3-providers/tests/tsconfig.json" },
{ "path": "./packages/web3-telemetry/tests/tsconfig.json" },
// All plugins should be type checked too
{ "path": "./packages/plugins/tsconfig.json" }
],
"compilerOptions": {
// Exclude everything by default. Include them in each project on-demand
"types": ["masknet__global-types"],
"resolveJsonModule": true,
"emitDeclarationOnly": true,
"libReplacement": true,
"module": "preserve",
"moduleResolution": "bundler",
"allowImportingTsExtensions": true
},
"files": []
}