-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathtsconfig.json
40 lines (40 loc) · 1.03 KB
/
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
36
37
38
39
40
{
"compilerOptions": {
"lib": ["dom", "es2022"],
"types": ["node", "jest", "@rspack/core/module"],
"module": "esnext",
"target": "es2022",
"moduleResolution": "node",
"jsx": "react-jsx",
"importHelpers": true,
"resolveJsonModule": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"esModuleInterop": true,
"strict": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"strictPropertyInitialization": false,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"declaration": false,
"sourceMap": true,
"baseUrl": ".",
"removeComments": true,
"forceConsistentCasingInFileNames": true,
"outDir": "./dist",
"paths": {
"*": ["./src/*", "./*"]
},
"plugins": [
{
"name": "typescript-plugin-css-modules"
}
]
},
"ts-node": {
"compilerOptions": { "module": "commonjs" }
},
"include": ["src", "rspack", "rspack.config.ts", "jest.config.ts"],
"exclude": ["node_modules", "**/*.js"]
}