33 строки
781 B
JSON
33 строки
781 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"rootDir": "src",
|
|
"outDir": "out",
|
|
|
|
// Types
|
|
"lib": ["es6", "es2018", "dom", "ES2019", "ES2020", "ES2021", "ES2022"],
|
|
"paths": {
|
|
"*": ["types/*"]
|
|
},
|
|
"typeRoots": ["./node_modules/@types"],
|
|
"types": ["webpack-env"]
|
|
},
|
|
"include": [
|
|
"./src/**/*",
|
|
|
|
// Include all types outside the type roots manually
|
|
"./types/slickgrid",
|
|
"./vscode.*"
|
|
],
|
|
"exclude": [
|
|
"src/server/node_modules",
|
|
"src/node_modules",
|
|
"src/server/src/typings",
|
|
"src/typings",
|
|
"src/ipywidgets",
|
|
"src/smoke",
|
|
"src/test/datascience/extensionapi"
|
|
]
|
|
}
|