bagdad/tsconfig.json

15 lines
270 B
JSON
Raw Normal View History

2021-12-11 21:01:50 +00:00
{
"compilerOptions": {
"target": "ES2021",
"lib": ["ESNext"],
"moduleResolution": "node",
"module": "commonjs",
"outDir": "build",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"resolveJsonModule": true
},
"include": ["src/**/*"]
}