You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tauri-plugins-workspace/webview-src/tsconfig.json

24 lines
518 B

{
"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"]
}