2024-05-07 14:16:01 +02:00
|
|
|
{
|
|
|
|
|
"extends": "ts-config",
|
|
|
|
|
"compilerOptions": {
|
2024-05-15 14:39:33 +02:00
|
|
|
"module": "esnext",
|
|
|
|
|
"target": "esnext",
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"moduleResolution": "node",
|
2024-05-07 14:16:01 +02:00
|
|
|
"outDir": "build/main",
|
|
|
|
|
"rootDir": "src",
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"types": ["jest", "node", "long"],
|
|
|
|
|
"lib": ["es2020", "DOM"],
|
|
|
|
|
"composite": true
|
|
|
|
|
},
|
|
|
|
|
"include": ["src/**/*.ts", "src/**/.*.ts"],
|
|
|
|
|
"exclude": ["node_modules/**"]
|
|
|
|
|
}
|