forked from tediousjs/setup-sqlserver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
13 lines (13 loc) · 719 Bytes
/
tsconfig.json
File metadata and controls
13 lines (13 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
{
"extends": "@tsconfig/node24",
"compilerOptions": {
"module": "node16",
"outDir": "./lib", /* Redirect output structure to the directory. */
"rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
"sourceMap": true,
"noImplicitAny": false, /* Raise error on expressions and declarations with an implied 'any' type. */
"resolveJsonModule": true, /* Allows importing modules with a '.json' extension, which is a common practice in node projects. */
"types": ["node", "mocha"]
},
"exclude": ["test", "lib", "node_modules", "misc"]
}