2024-04-15 01:58:18 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"lib": ["esnext", "DOM.Iterable", "DOM"],
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"jsx": "react",
|
|
|
|
"target": "esnext",
|
|
|
|
"module": "esnext",
|
|
|
|
"allowJs": true,
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"skipDefaultLibCheck": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"inlineSources": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"declaration": true,
|
2024-05-28 16:36:49 +08:00
|
|
|
"typeRoots": ["./node_modules/@types"],
|
2024-04-15 01:58:18 +08:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
"downlevelIteration": true
|
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"lib",
|
|
|
|
"client.d.ts",
|
|
|
|
"server.d.ts",
|
|
|
|
"client.js",
|
|
|
|
"server.js",
|
|
|
|
"plugin-symlink.d.ts",
|
|
|
|
"plugin-symlink.js"
|
|
|
|
]
|
|
|
|
}
|