1
0
Fork 0
mirror of https://git.sr.ht/~ashkeel/strimertul synced 2024-09-18 01:50:50 +00:00
strimertul/frontend/tsconfig.json

17 lines
343 B
JSON
Raw Normal View History

2021-05-02 12:29:43 +00:00
{
"compilerOptions": {
"target": "esnext",
"module": "es2022",
2021-05-02 12:29:43 +00:00
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
2022-12-04 17:42:43 +00:00
"jsx": "react-jsx",
2021-09-17 09:55:15 +00:00
"lib": ["es2019", "dom"],
2022-11-18 19:28:13 +00:00
"resolveJsonModule": true,
"baseUrl": ".",
"paths": {
"@wailsapp/*": ["./wailsjs/*"],
"~/*": ["./src/*"],
2022-11-18 19:28:13 +00:00
}
2021-05-02 12:29:43 +00:00
}
}