Some checks failed
Run mypy_primer on push / Run mypy_primer on push (push) Has been cancelled
Validation / Typecheck (push) Has been cancelled
Validation / Style (push) Has been cancelled
Validation / Test macos-latest (push) Has been cancelled
Validation / Test ubuntu-latest (push) Has been cancelled
Validation / Test windows-latest (push) Has been cancelled
Validation / Build (push) Has been cancelled
Validation / Required (push) Has been cancelled
26 lines
568 B
JSON
26 lines
568 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "./out",
|
|
"rootDir": "../..",
|
|
"paths": {
|
|
"pyright-internal/*": [
|
|
"../pyright-internal/src/*"
|
|
],
|
|
},
|
|
"typeRoots": ["./node_modules/@types", "../pyright-internal/typings"]
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"**/*.js",
|
|
"../pyright-internal/typings/*.d.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"out",
|
|
"index.js",
|
|
"langserver.index.js"
|
|
]
|
|
}
|