mirror of
https://github.com/microsoft/pyright.git
synced 2024-11-03 21:30:08 +03:00
26 lines
588 B
JSON
26 lines
588 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2019",
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"es2019"
|
|
],
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
"outDir": "./out",
|
|
"noImplicitReturns": true,
|
|
"checkJs": true,
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"out"
|
|
]
|
|
}
|