mirror of
https://github.com/h-sphere/sql-seal.git
synced 2026-07-22 10:10:28 +00:00
- fixing CSV loading - Fixing constantly reloading files when modifying sql inside the same block that has table declaration in - Auto-parsing JSON values with JSON5 - Better errors when error occurs in select statement
27 lines
504 B
JSON
27 lines
504 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES6",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true,
|
|
"types": [],
|
|
"strictNullChecks": true,
|
|
"lib": [
|
|
"DOM",
|
|
"ES5",
|
|
"ES6",
|
|
"ES7"
|
|
],
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"include": [
|
|
"**/*.ts"
|
|
]
|
|
}
|