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:
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