|
1 | 1 | {
|
2 | 2 | "extends": "../../tsconfig.base.json",
|
3 | 3 | "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, |
11 | 11 | "moduleResolution": "node",
|
| 12 | + "allowJs": false, |
| 13 | + "strict": true, |
| 14 | + "types": ["jest", "node"], |
| 15 | + "experimentalDecorators": true, |
12 | 16 | "resolveJsonModule": true,
|
| 17 | + "allowSyntheticDefaultImports": true, |
13 | 18 | "esModuleInterop": true,
|
14 |
| - "skipLibCheck": true, |
15 |
| - "skipDefaultLibCheck": true, |
| 19 | + "removeComments": true, |
16 | 20 | "declaration": true,
|
17 |
| - "noImplicitAny": false, |
18 | 21 | "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/*"] |
25 | 24 | }
|
26 | 25 | },
|
27 |
| - "files": [], |
28 |
| - "include": [], |
29 |
| - "exclude": ["jest.config.ts", "src/**/*.spec.ts", "src/**/*.test.ts"], |
| 26 | + "include": ["src", "../../global.d.ts", "__tests__/**/*"], |
| 27 | + "exclude": ["node_modules/**/*", "../node_modules"], |
30 | 28 | "references": [
|
31 | 29 | {
|
32 | 30 | "path": "./tsconfig.lib.json"
|
|
0 commit comments