ts-sql
Version:
An SQL builder in Typescript. This project is heavily inspired by [XQL](/extjs/xql). A big shout out to @exjs and @kobalicek for this amazing project.
29 lines (28 loc) • 565 B
JSON
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"declaration": true,
"outDir": "./dist",
"strict": true,
"baseUrl": "./lib",
"types": [
"jest"
],
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"forceConsistentCasingInFileNames": true,
"pretty": true,
"alwaysStrict": true,
"sourceMap": true
},
"include": [
"lib"
],
"exclude": [
"coverage", "dist","grammar", "node_modules"
],
"typeAcquisition": {
"enable": true
}
}