UNPKG

@thingjs/xplugin-cli

Version:

UINO ThingJS-X 零代码平台插件二次开发脚手架,用于生成插件模板开发代码

26 lines 615 B
{ "compilerOptions": { // "target": "es5", "target": "es2017", "module": "commonjs", "allowSyntheticDefaultImports": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, "baseUrl": "./", "paths": { "*": [ "types/*", ], "@/*": [ "src/*" //避免@作为路径别名跳转问题 ] }, }, "exclude": [ //提高idea性能 "node_modules", "dist", "build", "lib", "test" ] }