tauri-app/tsconfig.json

38 lines
728 B
JSON
Raw Permalink Normal View History

2024-01-14 14:26:14 +00:00
{
"compilerOptions": {
2024-02-11 17:12:40 +00:00
"target": "ES2020",
2024-01-14 14:26:14 +00:00
"useDefineForClassFields": true,
"module": "ESNext",
2024-02-11 17:12:40 +00:00
"lib": [
"ES2020",
"DOM",
"DOM.Iterable"
],
2024-01-14 14:26:14 +00:00
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
2024-02-11 17:12:40 +00:00
"jsx": "preserve",
"jsxImportSource": "solid-js",
2024-01-14 14:26:14 +00:00
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"baseUrl": ".",
"paths": {
2024-02-11 17:12:40 +00:00
"@/*": [
"./src/*"
]
2024-01-14 14:26:14 +00:00
}
},
2024-02-11 17:12:40 +00:00
"include": [
"src"
],
2024-01-14 14:26:14 +00:00
"references": [
{
"path": "./tsconfig.node.json"
}
]
2024-02-11 17:12:40 +00:00
}