mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-12-24 04:44:40 +01:00
33 lines
845 B
JSON
33 lines
845 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"allowJs": false,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@app/*": ["src/*"],
|
|
"@backend/*": ["src/backend/*"],
|
|
"@css/*": ["src/css/*"],
|
|
"@components/*": ["src/ui/*"],
|
|
"@icons/*": ["src/icons/*"],
|
|
"@views/*": ["src/ui/views/*"],
|
|
"@pages/*": ["src/ui/pages/*"]
|
|
}
|
|
},
|
|
"include": ["src"],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|