2022-06-15 16:25:29 +00:00
|
|
|
{
|
2022-11-13 04:07:59 +00:00
|
|
|
"extends": "@tsconfig/node16/tsconfig.json",
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es6",
|
|
|
|
"module": "commonjs",
|
2024-03-01 00:31:12 +00:00
|
|
|
"moduleResolution": "Node",
|
2022-11-13 04:16:53 +00:00
|
|
|
"outDir": "./lib",
|
2022-11-13 04:07:59 +00:00
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": false,
|
2024-02-03 01:57:46 +00:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"lib": ["esnext", "dom"]
|
2022-11-13 04:16:53 +00:00
|
|
|
},
|
2022-11-13 04:43:43 +00:00
|
|
|
"include": ["src/**/*", "test/**/*"],
|
2022-11-13 04:16:53 +00:00
|
|
|
"exclude": ["node_modules", "**/*.test.ts"]
|
2022-06-15 16:25:29 +00:00
|
|
|
}
|