trycrypt/tsconfig.json
2023-02-24 01:41:06 +01:00

20 lines
395 B
JSON

{
"compilerOptions": {
"noImplicitAny": true,
"sourceMap": true,
"outDir": "dist",
"target": "ES5",
"module": "commonjs",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": true,
"suppressImplicitAnyIndexErrors": true
},
"include": [
"./src/"
],
"exclude": [
"node_modules"
]
}