tgfs/tsconfig.json

17 lines
384 B
JSON
Raw Normal View History

2023-07-03 19:01:20 +00:00
{
"compilerOptions": {
"module": "commonjs",
"esModuleInterop": true,
"target": "ES2017",
"moduleResolution": "node",
"inlineSources": true,
2023-07-03 19:01:20 +00:00
"sourceMap": true,
"outDir": "dist",
"baseUrl": ".",
"paths": { "src/*": ["src/*"], "test/*": ["test/*"] }
2023-07-03 19:01:20 +00:00
},
"include": ["src/**/*", "test/**/*"],
"exclude": ["node_modules"],
2023-07-03 19:01:20 +00:00
"lib": ["es2017"]
}