dbgate/packages/web/tsconfig.json
2021-03-07 11:38:02 +01:00

20 lines
433 B
JSON

{
// "extends": "@tsconfig/svelte/tsconfig.json",
"include": ["src/**/*"],
"exclude": ["node_modules/*", "public/*"],
"compilerOptions": {
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"skipLibCheck": true,
"noImplicitAny": false,
"strictNullChecks": false,
"strict": false,
"target": "es6",
// "allowJs": true,
// "checkJs": true,
}
}