mirror of
https://github.com/dbgate/dbgate
synced 2024-11-07 12:13:57 +00:00
20 lines
433 B
JSON
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,
|
|
}
|
|
}
|