Q2TG/tsconfig.json

14 lines
227 B
JSON
Raw Normal View History

2022-02-15 10:06:36 +00:00
{
"compilerOptions": {
2022-02-26 10:15:40 +00:00
"module": "CommonJS",
2022-02-15 10:06:36 +00:00
"target": "ESNext",
"esModuleInterop": true,
"sourceMap": false,
"moduleResolution": "Node",
"outDir": "build"
},
"exclude": [
"node_modules"
]
}