forked from ethereum/remix-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
36 lines (36 loc) · 1.39 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"typeRoots": ["node_modules/@types"],
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@remixproject/plugin-utils": ["packages/utils/src/index.ts"],
"@remixproject/plugin-api": ["packages/api/src/index.ts"],
"@remixproject/engine": ["packages/engine/core/src/index.ts"],
"@remixproject/engine-web": ["packages/engine/web/src/index.ts"],
"@remixproject/plugin": ["packages/plugin/core/src/index.ts"],
"@remixproject/plugin/ws": ["packages/plugin/ws/src/index.ts"],
"@remixproject/plugin-webview": ["packages/plugin/webview/src/index.ts"],
"@remixproject/plugin-webworker": [
"packages/plugin/webworker/src/index.ts"
],
"@remixproject/plugin-theia": ["packages/plugin/theia/src/index.ts"],
"@remixproject/engine-theia": ["packages/engine/theia/src/index.ts"],
"@remixproject/engine-electron": ["packages/engine/electron/src/index.ts"],
"@remixproject/plugin-electron": ["packages/plugin/electron/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}