Skip to content

Commit ec12931

Browse files
docs: add missing information in docs
1 parent d09e52e commit ec12931

File tree

1 file changed

+15
-16
lines changed

1 file changed

+15
-16
lines changed

packages/rsbuild-plugin/tsconfig.json

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,26 @@
11
{
22
"extends": "../../tsconfig.base.json",
33
"compilerOptions": {
4-
"module": "commonjs",
5-
"forceConsistentCasingInFileNames": true,
6-
"strict": true,
7-
"noImplicitOverride": true,
8-
"noPropertyAccessFromIndexSignature": true,
9-
"noImplicitReturns": true,
10-
"noFallthroughCasesInSwitch": true,
4+
"baseUrl": ".",
5+
"rootDir": "./",
6+
"outDir": "dist",
7+
"sourceMap": false,
8+
"module": "es2022",
9+
"target": "es2022",
10+
"skipLibCheck": true,
1111
"moduleResolution": "node",
12+
"allowJs": false,
13+
"strict": true,
14+
"types": ["jest", "node"],
15+
"experimentalDecorators": true,
1216
"resolveJsonModule": true,
17+
"allowSyntheticDefaultImports": true,
1318
"esModuleInterop": true,
14-
"skipLibCheck": true,
15-
"skipDefaultLibCheck": true,
19+
"removeComments": true,
1620
"declaration": true,
17-
"noImplicitAny": false,
1821
"paths": {
19-
"@module-federation/sdk": ["../sdk/src/index.ts"],
20-
"@module-federation/sdk/*": ["../sdk/src/*"],
21-
"@module-federation/enhanced": ["../enhanced/src/index.ts"],
22-
"@module-federation/enhanced/*": ["../enhanced/src/*"],
23-
"@module-federation/node": ["../node/src/index.ts"],
24-
"@module-federation/node/*": ["../node/src/*"]
22+
"@/*": ["./*"],
23+
"@src/*": ["./src/*"]
2524
}
2625
},
2726
"include": ["src", "../../global.d.ts", "__tests__/**/*"],

0 commit comments

Comments
 (0)