Binato/tsconfig.json

15 lines
251 B
JSON
Raw Normal View History

2022-11-16 11:59:23 +00:00
{
"compilerOptions": {
"module": "commonjs",
2022-11-17 00:29:07 +00:00
"moduleResolution": "node",
2022-11-16 11:59:23 +00:00
"target": "es6",
"esModuleInterop": true,
2022-11-16 15:25:46 +00:00
"resolveJsonModule": true,
2022-11-16 11:59:23 +00:00
"rootDir": "./",
"outDir": "./build",
2023-08-20 13:03:01 +01:00
"strict": true,
"lib": [
"ES2021.String"
]
2022-11-16 11:59:23 +00:00
}
}