git-bug/webui/tsconfig.json

29 lines
609 B
JSON
Raw Normal View History

{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"target": "es5",
2020-02-13 22:00:03 +03:00
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"baseUrl": "."
},
2020-02-13 22:00:03 +03:00
"include": [
"src"
]
}