utils/tsconfig.json

19 lines
347 B
JSON
Raw Normal View History

2024-02-07 01:33:07 -05:00
{
"include": [
"src/**/*"
],
"compilerOptions": {
"composite": true,
"declaration": true,
"declarationMap": true,
"experimentalDecorators": true,
"esModuleInterop": true,
"lib": ["ESNext", "DOM"],
"module": "ES6",
"moduleResolution": "Node",
"outDir": "./dist",
"strict": true,
"target": "ESNext"
}
}