2020-04-28 15:45:21 +02:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2026-01-30 14:15:49 -05:00
|
|
|
"target": "ES2022",
|
|
|
|
|
"module": "NodeNext",
|
2020-04-28 15:45:21 +02:00
|
|
|
"outDir": "./lib",
|
|
|
|
|
"rootDir": "./src",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noImplicitAny": false,
|
2026-01-30 14:15:49 -05:00
|
|
|
"moduleResolution": "NodeNext",
|
2020-04-28 15:45:21 +02:00
|
|
|
"esModuleInterop": true
|
|
|
|
|
},
|
2025-03-19 11:25:29 +00:00
|
|
|
"exclude": ["node_modules", "**/*.test.ts", "jest.config.ts", "__tests__"]
|
2020-04-28 15:45:21 +02:00
|
|
|
}
|