web_lib

Common web application libraries
git clone https://radroots.dev/git/web_lib.git
Log | Files | Refs | LICENSE

commit d6c02dd95c19389254582b43234678e549b2ee5d
parent 80d0891e3f4f3051d55fb979037559e2e19bcc9a
Author: triesap <137732411+triesap@users.noreply.github.com>
Date:   Wed, 16 Oct 2024 20:53:50 +0000

tsconfig: add tauri plugin tsconfig

Diffstat:
Atsconfig/tauri-plugin.json | 28++++++++++++++++++++++++++++
1 file changed, 28 insertions(+), 0 deletions(-)

diff --git a/tsconfig/tauri-plugin.json b/tsconfig/tauri-plugin.json @@ -0,0 +1,27 @@ +{ + "compilerOptions": { + "pretty": true, + "module": "commonjs", + "target": "ES2022", + "resolveJsonModule": true, + "types": [], + "incremental": true, + "inlineSourceMap": true, + "inlineSources": true, + "allowSyntheticDefaultImports": true, + "strict": true, + "noUncheckedIndexedAccess": true, + "noFallthroughCasesInSwitch": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "noImplicitReturns": true, + "esModuleInterop": true, + "plugins": [ + { + "transform": "typia/lib/transform" + } + ], + "strictNullChecks": true, + "skipLibCheck": true + } +} +\ No newline at end of file