mirror of
https://github.com/tauri-apps/tauri-action.git
synced 2026-01-31 00:35:20 +01:00
* fix: add custom file search for more consistent results. This fixes issues where the action used config files in deeply nested directories instead of the correct one in the upper levels. * update target to es2021 since we run on nodejs16 * add todo * globby test drive * globby di glob * cleanup * remove sort. add another change file * remove changefile tags
14 lines
261 B
JSON
14 lines
261 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"module": "esnext",
|
|
"target": "es2021",
|
|
"pretty": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true
|
|
},
|
|
"include": ["./src"]
|
|
}
|