ente/tsconfig.json

15 lines
321 B
JSON
Raw Normal View History

2021-03-27 12:35:04 +00:00
{
2021-03-30 11:26:50 +00:00
"compilerOptions": {
"module": "commonjs",
2022-03-08 06:29:58 +00:00
"esModuleInterop": true,
2021-03-30 11:26:50 +00:00
"noImplicitAny": true,
"sourceMap": true,
2021-04-01 07:36:45 +00:00
"outDir": "app",
2021-03-30 11:26:50 +00:00
"baseUrl": ".",
"paths": {
"*": ["node_modules/*"]
}
},
2022-03-08 08:26:28 +00:00
"include": ["src/main/**/*", "src/config.ts"]
2021-03-30 11:26:50 +00:00
}