chore: fix tsconfig error

This commit is contained in:
kangwei 2020-03-30 15:42:07 +08:00
parent 203bbdaaac
commit 9dbc3dcf0a
19 changed files with 57 additions and 20 deletions

View File

@ -32,6 +32,7 @@
"resolveJsonModule": true,
// skip type checking of declaration files
"skipLibCheck": true,
"outDir": "lib"
},
"exclude": ["**/test", "**/lib", "**/es", "node_modules"]
}

View File

@ -1,6 +1,8 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {},
"compilerOptions": {
"outDir": "lib"
},
"include": [
"./src/"
]

View File

@ -1,6 +1,8 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {},
"compilerOptions": {
"outDir": "lib"
},
"include": [
"./src/"
]

View File

@ -1,6 +1,8 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {},
"compilerOptions": {
"outDir": "lib"
},
"include": [
"./src/"
]

View File

@ -1,6 +1,8 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {},
"compilerOptions": {
"outDir": "lib"
},
"include": [
"./src/"
]

View File

@ -1,5 +1,7 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {},
"compilerOptions": {
"outDir": "lib"
},
"include": ["./src/"],
}

View File

@ -1,6 +1,8 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {},
"compilerOptions": {
"outDir": "lib"
},
"include": [
"./src/"
]

View File

@ -1,6 +1,9 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {},
"include": ["src/*.ts", "src/*.tsx"],
"exclude": ["node_modules", "build", "public"]
"compilerOptions": {
"outDir": "lib"
},
"include": [
"./src/"
]
}

View File

@ -1,6 +1,8 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {},
"compilerOptions": {
"outDir": "lib"
},
"include": [
"./src/"
]

View File

@ -1,6 +1,8 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {},
"compilerOptions": {
"outDir": "lib"
},
"include": [
"./src/"
]

View File

@ -1,6 +1,8 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {},
"compilerOptions": {
"outDir": "lib"
},
"include": [
"./src/"
]

View File

@ -1,6 +1,8 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {},
"compilerOptions": {
"outDir": "lib"
},
"include": [
"./src/"
]

View File

@ -1,6 +1,8 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {},
"compilerOptions": {
"outDir": "lib"
},
"include": [
"./src/"
]

View File

@ -1,6 +1,8 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {},
"compilerOptions": {
"outDir": "lib"
},
"include": [
"./src/"
]

View File

@ -1,6 +1,8 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {},
"compilerOptions": {
"outDir": "lib"
},
"include": [
"./src/"
]

View File

@ -1,6 +1,8 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {},
"compilerOptions": {
"outDir": "lib"
},
"include": [
"./src/"
]

View File

@ -1,6 +1,8 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {},
"compilerOptions": {
"outDir": "lib"
},
"include": [
"./src/"
]

View File

@ -1,6 +1,8 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {},
"compilerOptions": {
"outDir": "lib"
},
"include": [
"./src/"
]

View File

@ -37,7 +37,8 @@
"baseUrl": "./packages",
"paths": {
"@ali/lowcode-*": ["./*/src"]
}
},
"outDir": "lib"
},
"exclude": ["**/test", "**/lib", "**/es", "node_modules"]
}