зеркало из https://github.com/github/docs.git
38 строки
764 B
JSON
38 строки
764 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitThis": false,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "Bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"baseUrl": ".",
|
|
"noEmit": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"incremental": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"src/code-scanning/scripts/generate-code-scanning-query-list.ts"
|
|
],
|
|
"include": [
|
|
"*.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx"
|
|
]
|
|
}
|