queue/tsconfig.json

21 lines
347 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",
2023-03-26 12:32:57 +00:00
"skipLibCheck": true,
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"
2023-03-26 12:32:57 +00:00
]
2020-11-11 17:17:37 +00:00
}