mirror of
https://github.com/Grasscutters/Meadow.git
synced 2024-11-26 22:00:23 +00:00
34 lines
757 B
JSON
34 lines
757 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"allowJs": false,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@app/*": ["src/*"],
|
|
"@components/*": ["src/ui/components/*"],
|
|
"@pages/*": ["src/ui/pages/*"],
|
|
"@css/*": ["src/css/*"],
|
|
}
|
|
},
|
|
|
|
"include": [
|
|
"./src"
|
|
],
|
|
|
|
"references": [{ "path": "./tsconfig.node.json"}]
|
|
}
|