Logging/tsconfig.json

14 lines
290 B
JSON
Raw Normal View History

{
"compilerOptions": {
"module": "commonjs",
2020-08-26 09:55:57 +00:00
"target": "esnext",
"noImplicitAny": false,
"sourceMap": true,
"outDir": "out",
"declaration": true,
2020-08-26 09:55:57 +00:00
"typeRoots": ["node_modules/@types"]
},
2020-08-26 09:55:57 +00:00
"exclude": ["node_modules"],
"include": ["src"]
}