dbgate/packages/web/tsconfig.json

20 lines
433 B
JSON
Raw Normal View History

2021-02-17 17:46:27 +00:00
{
2021-02-20 16:47:48 +00:00
// "extends": "@tsconfig/svelte/tsconfig.json",
2021-02-17 17:46:27 +00:00
"include": ["src/**/*"],
2021-02-20 20:35:24 +00:00
"exclude": ["node_modules/*", "public/*"],
"compilerOptions": {
2021-02-25 17:05:44 +00:00
"moduleResolution": "node",
2021-02-20 20:35:24 +00:00
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"skipLibCheck": true,
"noImplicitAny": false,
"strictNullChecks": false,
2021-02-22 16:34:24 +00:00
"strict": false,
"target": "es6",
2021-03-07 10:38:02 +00:00
// "allowJs": true,
// "checkJs": true,
2021-02-20 20:35:24 +00:00
}
}