mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-21 11:26:15 +02:00
7e58dc8502
Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
21 lines
542 B
JSON
21 lines
542 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["ES2019", "ES2020.Promise", "ES2020.String", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"noEmit": true,
|
|
"noEmitOnError": false,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"pretty": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"target": "ES2019",
|
|
"declaration": true,
|
|
"declarationDir": "./"
|
|
},
|
|
"exclude": ["dist-js", "node_modules", "test/types"]
|
|
}
|