mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-16 15:01:15 +00:00
chore: update tsconfig
This commit is contained in:
parent
fef611bc55
commit
bef36e1c0d
@ -5,9 +5,7 @@
|
|||||||
// Target latest version of ECMAScript.
|
// Target latest version of ECMAScript.
|
||||||
"target": "esnext",
|
"target": "esnext",
|
||||||
// Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'.
|
// Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'.
|
||||||
"module": "commonjs",
|
"module": "esnext",
|
||||||
// Search under node_modules for non-relative imports.
|
|
||||||
"moduleResolution": "node",
|
|
||||||
// Process & infer types from .js files.
|
// Process & infer types from .js files.
|
||||||
"allowJs": true,
|
"allowJs": true,
|
||||||
// Report errors in .js files.
|
// Report errors in .js files.
|
||||||
|
|||||||
@ -1,9 +1,7 @@
|
|||||||
{
|
{
|
||||||
"extends": "../../tsconfig.json",
|
"extends": "../../tsconfig.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {},
|
||||||
"jsx": "react",
|
"include": [
|
||||||
"target": "ES6"
|
"./src/"
|
||||||
},
|
]
|
||||||
"include": ["src/*"],
|
|
||||||
"exclude": ["node_modules", "build", "public"]
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,8 +1,6 @@
|
|||||||
{
|
{
|
||||||
"extends": "../../tsconfig.json",
|
"extends": "../../tsconfig.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {},
|
||||||
"outDir": "lib"
|
|
||||||
},
|
|
||||||
"include": [
|
"include": [
|
||||||
"./src/"
|
"./src/"
|
||||||
]
|
]
|
||||||
|
|||||||
@ -1,10 +1,6 @@
|
|||||||
{
|
{
|
||||||
"extends": "../../tsconfig.json",
|
"extends": "../../tsconfig.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {},
|
||||||
"outDir": "lib",
|
|
||||||
"target": "es6",
|
|
||||||
"jsx": "react"
|
|
||||||
},
|
|
||||||
"include": [
|
"include": [
|
||||||
"./src/"
|
"./src/"
|
||||||
]
|
]
|
||||||
|
|||||||
@ -1,10 +1,6 @@
|
|||||||
{
|
{
|
||||||
"extends": "../../tsconfig.json",
|
"extends": "../../tsconfig.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {},
|
||||||
"outDir": "lib",
|
|
||||||
"target": "es6",
|
|
||||||
"jsx": "react"
|
|
||||||
},
|
|
||||||
"include": [
|
"include": [
|
||||||
"./src/"
|
"./src/"
|
||||||
]
|
]
|
||||||
|
|||||||
@ -1,7 +1,5 @@
|
|||||||
{
|
{
|
||||||
"extends": "../../tsconfig.json",
|
"extends": "../../tsconfig.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {},
|
||||||
"outDir": "lib"
|
|
||||||
},
|
|
||||||
"include": ["./src/"],
|
"include": ["./src/"],
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,12 +1,6 @@
|
|||||||
{
|
{
|
||||||
"extends": "../../tsconfig.json",
|
"extends": "../../tsconfig.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {},
|
||||||
"outDir": "lib",
|
|
||||||
"noUnusedLocals": true,
|
|
||||||
"noImplicitReturns": true,
|
|
||||||
"noImplicitThis": false,
|
|
||||||
"noImplicitAny": false
|
|
||||||
},
|
|
||||||
"include": [
|
"include": [
|
||||||
"./src/"
|
"./src/"
|
||||||
]
|
]
|
||||||
|
|||||||
@ -1,10 +1,6 @@
|
|||||||
{
|
{
|
||||||
"extends": "../../tsconfig.json",
|
"extends": "../../tsconfig.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {},
|
||||||
"outDir": "lib",
|
|
||||||
"target": "es6",
|
|
||||||
"jsx": "react",
|
|
||||||
},
|
|
||||||
"include": ["src/*.ts", "src/*.tsx"],
|
"include": ["src/*.ts", "src/*.tsx"],
|
||||||
"exclude": ["node_modules", "build", "public"]
|
"exclude": ["node_modules", "build", "public"]
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,8 +1,6 @@
|
|||||||
{
|
{
|
||||||
"extends": "../../tsconfig.json",
|
"extends": "../../tsconfig.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {},
|
||||||
"outDir": "lib"
|
|
||||||
},
|
|
||||||
"include": [
|
"include": [
|
||||||
"./src/"
|
"./src/"
|
||||||
]
|
]
|
||||||
|
|||||||
@ -1,10 +1,7 @@
|
|||||||
{
|
{
|
||||||
"extends": "../../tsconfig.json",
|
"extends": "../../tsconfig.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {},
|
||||||
"outDir": "lib",
|
"include": [
|
||||||
"target": "es6",
|
"./src/"
|
||||||
"jsx": "react",
|
]
|
||||||
},
|
|
||||||
"include": ["src/*.ts", "src/*.tsx"],
|
|
||||||
"exclude": ["node_modules", "build", "public"]
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,5 +1,7 @@
|
|||||||
{
|
{
|
||||||
"extends": "../../tsconfig.json",
|
"extends": "../../tsconfig.json",
|
||||||
"include": ["src/*.ts", "src/*.tsx"],
|
"compilerOptions": {},
|
||||||
"exclude": ["node_modules", "build", "public"]
|
"include": [
|
||||||
|
"./src/"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,5 +1,7 @@
|
|||||||
{
|
{
|
||||||
"extends": "../../tsconfig.json",
|
"extends": "../../tsconfig.json",
|
||||||
"include": ["src/*.ts", "src/*.tsx"],
|
"compilerOptions": {},
|
||||||
"exclude": ["node_modules", "build", "public"]
|
"include": [
|
||||||
|
"./src/"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@ali/lowcode-plugin-settings-pane",
|
"name": "@ali/lowcode-plugin-settings-pane",
|
||||||
"version": "0.8.1",
|
"version": "0.8.2",
|
||||||
"description": "Settings pane for Ali lowCode engine",
|
"description": "Settings pane for Ali lowCode engine",
|
||||||
"files": [
|
"files": [
|
||||||
"es",
|
"es",
|
||||||
|
|||||||
@ -2,7 +2,7 @@ import React, { Component, PureComponent } from 'react';
|
|||||||
import { Tab, Breadcrumb } from '@alifd/next';
|
import { Tab, Breadcrumb } from '@alifd/next';
|
||||||
import { Title, createIcon } from '@ali/lowcode-globals';
|
import { Title, createIcon } from '@ali/lowcode-globals';
|
||||||
import { Node } from '@ali/lowcode-designer';
|
import { Node } from '@ali/lowcode-designer';
|
||||||
import OutlinePane, { getTreeMaster } from '@ali/lowcode-plugin-outline-pane';
|
import OutlinePane from '@ali/lowcode-plugin-outline-pane';
|
||||||
import { SettingsMain, SettingField, isSettingField } from './main';
|
import { SettingsMain, SettingField, isSettingField } from './main';
|
||||||
import SettingsPane, { createSettingFieldView } from './settings-pane';
|
import SettingsPane, { createSettingFieldView } from './settings-pane';
|
||||||
import './transducers/register';
|
import './transducers/register';
|
||||||
|
|||||||
@ -2,7 +2,7 @@ import { EventEmitter } from 'events';
|
|||||||
import { uniqueId } from '@ali/lowcode-globals';
|
import { uniqueId } from '@ali/lowcode-globals';
|
||||||
import { ComponentMeta, Node, Designer, Selection } from '@ali/lowcode-designer';
|
import { ComponentMeta, Node, Designer, Selection } from '@ali/lowcode-designer';
|
||||||
import { TitleContent, FieldExtraProps, SetterType, CustomView, FieldConfig, isCustomView } from '@ali/lowcode-globals';
|
import { TitleContent, FieldExtraProps, SetterType, CustomView, FieldConfig, isCustomView } from '@ali/lowcode-globals';
|
||||||
import { getTreeMaster } from 'plugin-outline-pane/src/main';
|
import { getTreeMaster } from '@ali/lowcode-plugin-outline-pane';
|
||||||
|
|
||||||
export interface SettingTarget {
|
export interface SettingTarget {
|
||||||
// 所设置的节点集,至少一个
|
// 所设置的节点集,至少一个
|
||||||
|
|||||||
@ -1,8 +1,6 @@
|
|||||||
{
|
{
|
||||||
"extends": "../../tsconfig.json",
|
"extends": "../../tsconfig.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {},
|
||||||
"outDir": "lib"
|
|
||||||
},
|
|
||||||
"include": [
|
"include": [
|
||||||
"./src/"
|
"./src/"
|
||||||
]
|
]
|
||||||
|
|||||||
@ -1,8 +1,6 @@
|
|||||||
{
|
{
|
||||||
"extends": "../../tsconfig.json",
|
"extends": "../../tsconfig.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {},
|
||||||
"outDir": "lib"
|
|
||||||
},
|
|
||||||
"include": [
|
"include": [
|
||||||
"./src/"
|
"./src/"
|
||||||
]
|
]
|
||||||
|
|||||||
@ -1,8 +1,6 @@
|
|||||||
{
|
{
|
||||||
"extends": "../../tsconfig.json",
|
"extends": "../../tsconfig.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {},
|
||||||
"outDir": "lib"
|
|
||||||
},
|
|
||||||
"include": [
|
"include": [
|
||||||
"./src/"
|
"./src/"
|
||||||
]
|
]
|
||||||
|
|||||||
@ -1,8 +1,6 @@
|
|||||||
{
|
{
|
||||||
"extends": "../../tsconfig.json",
|
"extends": "../../tsconfig.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {},
|
||||||
"outDir": "lib"
|
|
||||||
},
|
|
||||||
"include": [
|
"include": [
|
||||||
"./src/"
|
"./src/"
|
||||||
]
|
]
|
||||||
|
|||||||
@ -1,8 +1,6 @@
|
|||||||
{
|
{
|
||||||
"extends": "../../tsconfig.json",
|
"extends": "../../tsconfig.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {},
|
||||||
"outDir": "lib"
|
|
||||||
},
|
|
||||||
"include": [
|
"include": [
|
||||||
"./src/"
|
"./src/"
|
||||||
]
|
]
|
||||||
|
|||||||
@ -1,8 +1,6 @@
|
|||||||
{
|
{
|
||||||
"extends": "../../tsconfig.json",
|
"extends": "../../tsconfig.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {},
|
||||||
"outDir": "lib"
|
|
||||||
},
|
|
||||||
"include": [
|
"include": [
|
||||||
"./src/"
|
"./src/"
|
||||||
]
|
]
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
// Target latest version of ECMAScript.
|
// Target latest version of ECMAScript.
|
||||||
"target": "esnext",
|
"target": "esnext",
|
||||||
// Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'.
|
// Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'.
|
||||||
"module": "commonjs",
|
"module": "esnext",
|
||||||
// Search under node_modules for non-relative imports.
|
// Search under node_modules for non-relative imports.
|
||||||
"moduleResolution": "node",
|
"moduleResolution": "node",
|
||||||
// Process & infer types from .js files.
|
// Process & infer types from .js files.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user