knex/tsconfig.json

17 lines
387 B
JSON
Raw Permalink Normal View History

{
"extends": "@tsconfig/node12/tsconfig.json",
"compilerOptions": {
"strict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"declaration": false,
"rootDirs": ["lib"],
"importHelpers": false,
"sourceMap": true,
"baseUrl": "."
},
"include": ["lib/**/*.ts"],
"exclude": ["node_modules"]
}