2022-08-12 12:15:51 +00:00
|
|
|
{
|
2022-09-26 14:53:51 +00:00
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "es6",
|
2024-04-29 09:28:27 +00:00
|
|
|
"module": "commonjs",
|
2022-09-26 14:53:51 +00:00
|
|
|
"outDir": "./lib",
|
|
|
|
|
"sourceRoot": "./src",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"noImplicitAny": false,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"resolveJsonModule": true
|
|
|
|
|
},
|
|
|
|
|
"exclude": [
|
|
|
|
|
"node_modules",
|
|
|
|
|
"**/*.test.ts"
|
|
|
|
|
]
|
2022-08-12 12:15:51 +00:00
|
|
|
}
|