StarRailCopilot/webapp/tsconfig.json

16 lines
338 B
JSON
Raw Normal View History

2023-09-09 16:22:01 +00:00
{
"compilerOptions": {
"module": "esnext",
"target": "esnext",
"sourceMap": true,
"moduleResolution": "Node",
"skipLibCheck": true,
"strict": true,
"isolatedModules": true,
"types": ["node"],
"typeRoots": ["node_modules/@types"],
"lib": ["ESNext"],
"allowSyntheticDefaultImports": true
}
}