2022-03-17 09:21:02 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es2019",
|
|
|
|
"module": "esnext",
|
|
|
|
"lib": ["esnext"],
|
|
|
|
"sourceMap": false,
|
|
|
|
"strict": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noImplicitAny": false,
|
2023-12-07 15:32:59 +01:00
|
|
|
"noImplicitReturns": true
|
2022-03-17 09:21:02 +01:00
|
|
|
},
|
2023-12-07 15:32:59 +01:00
|
|
|
"include": ["src", "rollup.config.ts"]
|
2022-03-17 09:21:02 +01:00
|
|
|
}
|