mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-23 11:36:13 +02:00
24 lines
518 B
JSON
Executable File
24 lines
518 B
JSON
Executable File
{
|
|
"compilerOptions": {
|
|
"target": "ES2019",
|
|
"strict": true,
|
|
"lib": [
|
|
"ES2019",
|
|
"ES2020.Promise",
|
|
"ES2020.String",
|
|
"DOM",
|
|
],
|
|
"noEmitOnError": true,
|
|
"isolatedModules": true,
|
|
// module resolution
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "node",
|
|
// advanced
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": true,
|
|
"declaration": true,
|
|
"declarationDir": "../webview-dist",
|
|
"rootDir": "./",
|
|
},
|
|
"exclude": ["node_modules"]
|
|
} |