Utils/tsconfig.json

16 lines
349 B
JSON
Raw Normal View History

2019-03-08 00:39:43 +00:00
{
"compilerOptions": {
2020-10-14 23:48:52 +00:00
"target": "esnext",
2019-03-08 00:39:43 +00:00
"module": "commonjs",
"moduleResolution": "node",
"outDir": "lib",
"preserveWatchOutput": true,
"declaration": true,
"sourceMap": true,
2020-10-14 23:48:52 +00:00
"strict": true,
"importsNotUsedAsValues": "error",
"isolatedModules": true
2019-03-26 01:39:20 +00:00
},
2020-10-14 23:48:52 +00:00
"include": ["./src"]
}