idraw/tsconfig.node.json

25 lines
486 B
JSON
Raw Permalink Normal View History

2023-02-12 03:39:24 +00:00
{
"compilerOptions": {
"module": "commonjs",
"target": "ES6",
"lib": ["ES6", "DOM"],
"moduleResolution": "bundler",
2023-02-12 03:39:24 +00:00
"strict": false,
"jsx": "preserve",
"sourceMap": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"importHelpers": true,
"allowJs": true,
"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
]
}