renjs/tsconfig.json

15 lines
287 B
JSON
Raw Permalink Normal View History

2022-03-03 23:11:15 -05:00
{
"compilerOptions": {
"lib": ["ESNext"],
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Node",
"noImplicitAny": true,
"allowSyntheticDefaultImports": true,
"outDir": "./out",
"declaration": true
},
"include": [
"src/**/*.ts"
]
}