2021-10-28 16:51:07 +01:00
|
|
|
{
|
2022-01-31 22:32:29 +00:00
|
|
|
"compilerOptions": {
|
2023-05-02 19:55:34 +01:00
|
|
|
"target": "es2021",
|
|
|
|
|
"module": "ES2020",
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"outDir": "dist",
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noImplicitThis": true,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"isolatedModules": true
|
2022-04-10 12:31:05 +01:00
|
|
|
},
|
2023-05-02 19:55:34 +01:00
|
|
|
"include": ["./src/**/*"]
|
|
|
|
|
}
|