Files
stimvisor/frontend/tsconfig.json

50 lines
926 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"lib": [
"DOM",
"DOM.Iterable",
"ESNext"
],
"baseUrl": ".",
"paths": {
"@/*": [
"./src/*"
],
"$app": [
"./wailsjs/go/main/App"
],
"$main/*": [
"./wailsjs/go/main/*"
],
"$runtime/*": [
"./wailsjs/runtime/*"
],
"$models": [
"./wailsjs/go/models"
]
},
"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"
},
"include": [
"src"
],
"references": [
{
"path": "./tsconfig.node.json"
}
]
}