2020-10-25 02:25:23 +01:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2026-02-28 15:57:06 +01:00
|
|
|
"module": "nodenext",
|
|
|
|
|
"moduleResolution": "nodenext",
|
2023-02-20 22:32:55 +01:00
|
|
|
"esModuleInterop": true,
|
2020-10-25 02:25:23 +01:00
|
|
|
"newLine": "lf",
|
|
|
|
|
"outDir": "./lib",
|
|
|
|
|
"rootDir": "./src",
|
2022-03-22 21:09:00 +01:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
2020-10-25 02:25:23 +01:00
|
|
|
"noImplicitAny": false,
|
2022-03-22 21:09:00 +01:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"useUnknownInCatchVariables": false,
|
2020-10-25 02:25:23 +01:00
|
|
|
},
|
2026-02-28 15:57:06 +01:00
|
|
|
"include": [
|
|
|
|
|
"src/**/*.ts"
|
2020-12-23 22:09:38 +01:00
|
|
|
]
|
2020-10-25 02:25:23 +01:00
|
|
|
}
|