DefinitelyTyped/types/mssql/tsconfig.json
Ulrich Buchgraber 693c729a97 Add typings for "mssql/msnodesqlv8" (which is a wrapper for "mssql" + enabled "msnodesqlv8" driver)
Also set TS version to >= 2.1 (to use async/await in the tests; TS 2.1)
2018-08-25 02:21:51 +02:00

24 lines
515 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": false,
"noImplicitThis": true,
"strictNullChecks": false,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"msnodesqlv8.d.ts",
"mssql-tests.ts"
]
}