mirror of
https://github.com/dbgate/dbgate
synced 2024-11-07 20:26:23 +00:00
29 lines
572 B
JSON
29 lines
572 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"noEmit": true,
|
|
"jsx": "react",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "Node",
|
|
"noImplicitAny": false,
|
|
"strictNullChecks": false,
|
|
"target": "es5",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
},
|
|
"include": [
|
|
"src"
|
|
]
|
|
}
|