mirror of
https://github.com/fanchenio/DawnLauncher.git
synced 2025-07-13 21:02:10 +08:00
26 lines
559 B
JSON
26 lines
559 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["ESNext", "DOM"],
|
|
"skipLibCheck": true,
|
|
"noEmit": true
|
|
},
|
|
"include": [
|
|
"src",
|
|
"commons",
|
|
"types/classification.d.ts",
|
|
"types/common.d.ts",
|
|
"types/item.d.ts",
|
|
"types/setting.ts"
|
|
],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|