mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-18 16:11:38 +03:00
fab788b4bd
* feat(tauri.js): move to typescript * fix(tauri.js): properly export api as commonjs * feat(tauri.js): convert tauricon to typescript * fix(tauri.js/tauricon): type error * chore(tauri.js/package): update yarn.lock * chore(tauri.js/package): add build/pretest scripts * refactor(tauri.js/template): remove duplicate types * chore(tauri.js) lint-fix * fix(tauri.js) build tauricon.ts * chore(tauri.js) remove unused code Co-authored-by: nothingismagick <drthompsonsmagickindustries@gmail.com> Co-authored-by: Lucas Fernandes Nogueira <lucasfernandesnog@gmail.com>
17 lines
297 B
JSON
17 lines
297 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist/",
|
|
"strict": true,
|
|
"module": "commonjs",
|
|
"target": "es5",
|
|
"allowJs": true,
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "node",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"types": ["src/types"]
|
|
}
|
|
},
|
|
"include": ["src"]
|
|
}
|