@truenewx/tnxet
Version:
互联网技术解决方案:Electron扩展支持
33 lines (32 loc) • 600 B
JSON
{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "Bundler",
"emitDeclarationOnly": true,
"declaration": true,
"declarationMap": true,
"outDir": "types",
"allowImportingTsExtensions": true,
"strict": false,
"noImplicitAny": false,
"allowJs": false,
"resolveJsonModule": true,
"esModuleInterop": true,
"skipLibCheck": true,
"lib": [
"ES2020",
"DOM"
],
"types": [],
"baseUrl": ".",
"paths": {
"@/*": [
"src/*"
]
}
},
"include": [
"src/**/*"
]
}