2023-05-01 13:44:02 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-07-23 23:43:28 +02:00
|
|
|
"typeRoots": ["src/types", "node_modules/@types"],
|
2023-05-01 13:44:02 +02:00
|
|
|
"module": "commonjs",
|
|
|
|
"target": "ES6",
|
2023-07-23 23:43:28 +02:00
|
|
|
"lib": ["ES2020", "DOM"],
|
2023-05-01 13:44:02 +02:00
|
|
|
"noImplicitAny": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"outDir": "ts-dist",
|
2024-05-27 12:28:45 +02:00
|
|
|
"resolveJsonModule": true,
|
2023-05-01 13:44:02 +02:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"baseUrl": ".",
|
2024-10-16 20:37:47 +02:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2023-05-01 13:44:02 +02:00
|
|
|
"paths": {
|
|
|
|
"*": ["node_modules/*"]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"include": ["src/**/*"]
|
|
|
|
}
|