mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-18 08:02:13 +03:00
af6411d5f8
* feat: setup testing for CTA * install with yarn * build before test * add yarn to npm runs for install / test start * add dev mode to link cli.js and api locally * remove fixtures * run tests serially * cli.js build-release avoids webpack error * assert on package.json contents as first check * run tauri build and split out custom asserts * add changefile * shorten workflow name * too short * exclude npm@6 on node@16 * increase timeout, tauri build takes a bit of time * only assert that the tauri script exists
16 lines
368 B
JSON
16 lines
368 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"module": "esnext",
|
|
"target": "es6",
|
|
"allowJs": true,
|
|
"pretty": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "node",
|
|
"typeRoots": ["./types", "node_modules/@types"]
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["src/templates", "types", "test", "__fixtures__"]
|
|
}
|