forked from webpack/webpack-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
35 lines (35 loc) · 959 Bytes
/
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
30
31
32
33
34
35
{
"exclude": ["node_modules", "lib", "__tests__"],
"files": [],
"compilerOptions": {
"skipLibCheck": true,
"target": "es2017",
"module": "commonjs",
"lib": ["es6", "es2017"],
"rootDir": ".",
"outDir": "lib",
"moduleResolution": "node",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"baseUrl": ".",
"paths": {
"@webpack-cli/*": ["packages/*/src"]
},
"composite": true,
"declaration": true
},
"references": [
{ "path": "packages/generate-loader" },
{ "path": "packages/generate-plugin" },
{ "path": "packages/generators" },
{ "path": "packages/info" },
{ "path": "packages/init" },
{ "path": "packages/migrate" },
{ "path": "packages/package-utils" },
{ "path": "packages/serve" },
{ "path": "packages/utils" },
// { "path": "packages/webpack-cli" },
{ "path": "packages/webpack-scaffold" }
]
}