queue/tsconfig.json

25 lines
399 B
JSON
Raw Normal View History

2020-11-11 17:17:37 +00:00
{
"compilerOptions": {
"esModuleInterop": true,
"lib": [
2022-03-05 13:10:45 +00:00
"ESNext"
2020-11-11 17:17:37 +00:00
],
2022-03-05 13:10:45 +00:00
"module": "ESNext",
"moduleResolution": "Node",
"noEmit": true,
2022-03-05 13:10:45 +00:00
"outDir": "build",
2020-11-11 17:17:37 +00:00
"strict": true,
2022-03-05 13:10:45 +00:00
"target": "ESNext"
2020-11-11 17:17:37 +00:00
},
"include": [
"source/**/*.ts",
2022-03-05 13:10:45 +00:00
"tests/**/*.ts",
"vite.config.ts"
2020-11-11 17:17:37 +00:00
],
2022-03-05 13:10:45 +00:00
"ts-node": {
"compilerOptions": {
"module": "CommonJS"
}
}
2020-11-11 17:17:37 +00:00
}