dbgate/packages/web/tsconfig.json

29 lines
572 B
JSON
Raw Normal View History

2020-01-09 21:30:53 +00:00
{
"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"
2020-01-09 21:30:53 +00:00
],
"strict": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
2020-02-02 10:31:41 +00:00
"isolatedModules": true,
2020-01-09 21:30:53 +00:00
},
"include": [
"src"
]
}