dbgate/packages/web/tsconfig.json
2021-02-25 18:05:44 +01:00

18 lines
385 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",
}
}