Logging/tsconfig.json
2020-08-26 11:55:57 +02:00

14 lines
290 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "esnext",
"noImplicitAny": false,
"sourceMap": true,
"outDir": "out",
"declaration": true,
"typeRoots": ["node_modules/@types"]
},
"exclude": ["node_modules"],
"include": ["src"]
}