2023-02-12 03:39:24 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"module": "commonjs",
|
|
|
|
|
"target": "ES6",
|
|
|
|
|
"lib": ["ES6", "DOM"],
|
2026-03-29 07:57:09 +00:00
|
|
|
"moduleResolution": "bundler",
|
2023-02-12 03:39:24 +00:00
|
|
|
"strict": false,
|
|
|
|
|
"jsx": "preserve",
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"importHelpers": true,
|
|
|
|
|
"allowJs": true,
|
2026-03-29 07:57:09 +00:00
|
|
|
"composite": true,
|
|
|
|
|
"types": ["node"]
|
2023-02-12 03:39:24 +00:00
|
|
|
},
|
|
|
|
|
"include": [
|
|
|
|
|
"scripts/",
|
2023-02-12 05:34:06 +00:00
|
|
|
"__tests__/e2e.test.ts",
|
2023-02-12 03:39:24 +00:00
|
|
|
],
|
|
|
|
|
"exclude": [
|
2023-09-16 13:22:28 +00:00
|
|
|
"node_modules",
|
|
|
|
|
"scripts/**/*.js"
|
2023-02-12 03:39:24 +00:00
|
|
|
]
|
|
|
|
|
}
|