2023-11-17 08:45:00 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ESNext",
|
|
|
|
"jsx": "preserve",
|
2023-12-14 21:45:29 +08:00
|
|
|
"lib": ["DOM", "ESNext"],
|
|
|
|
"baseUrl": ".",
|
|
|
|
"module": "ESNext",
|
2023-11-17 08:45:00 +08:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
2023-12-14 21:45:29 +08:00
|
|
|
"types": ["node"],
|
|
|
|
"strict": true,
|
2023-11-17 08:45:00 +08:00
|
|
|
"strictNullChecks": true,
|
2023-12-14 21:45:29 +08:00
|
|
|
"noUnusedLocals": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true
|
2023-11-17 08:45:00 +08:00
|
|
|
},
|
|
|
|
"include": ["src/**/*"],
|
|
|
|
"exclude": ["node_modules", "dist"]
|
|
|
|
}
|