mirror of
https://github.com/Xevion/vastly.git
synced 2025-12-05 23:16:48 -06:00
32 lines
727 B
JSON
32 lines
727 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"allowJs": false,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@components/*": ["src/components/*"],
|
|
"@wails/*": ["./wailsjs/*"],
|
|
"@src/*": ["src/*"]
|
|
}
|
|
},
|
|
"include": ["src"],
|
|
"references": [
|
|
{
|
|
"path": "./tsconfig.node.json"
|
|
}
|
|
]
|
|
}
|