modify tsconfig files to improve IDE performance
This commit is contained in:
parent
6eb58741e8
commit
7ab94bef3b
6 changed files with 23 additions and 14 deletions
|
|
@ -8,10 +8,17 @@
|
|||
"allowJs": true,
|
||||
"checkJs": true
|
||||
},
|
||||
"include": [
|
||||
"./**/*.js"
|
||||
],
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"jspm_packages",
|
||||
"tmp",
|
||||
"temp"
|
||||
"./built",
|
||||
"./jspm_packages",
|
||||
"./tmp",
|
||||
"./temp",
|
||||
"./test",
|
||||
"./test-federation",
|
||||
"./test-server"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -34,11 +34,11 @@
|
|||
]
|
||||
},
|
||||
"include": [
|
||||
"@types/**/*.ts",
|
||||
"js/**/*"
|
||||
"./@types/**/*.ts",
|
||||
"./js/**/*"
|
||||
],
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"test/**/*"
|
||||
"./test/**/*"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -100,6 +100,6 @@
|
|||
],
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"example"
|
||||
"./lib"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -26,10 +26,10 @@
|
|||
]
|
||||
},
|
||||
"include": [
|
||||
"src/**/*"
|
||||
"./src/**/*.ts"
|
||||
],
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"test/**/*"
|
||||
"./test/**/*"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -15,8 +15,10 @@
|
|||
]
|
||||
},
|
||||
"include": [
|
||||
"src/**/*.ts",
|
||||
"built/**/*.ts"
|
||||
"./src/**/*.ts",
|
||||
],
|
||||
"exclude": []
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"./built"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -26,10 +26,10 @@
|
|||
]
|
||||
},
|
||||
"include": [
|
||||
"src/**/*"
|
||||
"./src/**/*.ts"
|
||||
],
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"test/**/*"
|
||||
"./test/**/*"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue