ente/desktop/tsconfig.json

16 lines
329 B
JSON
Raw Normal View History

2021-03-27 12:35:04 +00:00
{
2021-03-30 11:26:50 +00:00
"compilerOptions": {
2023-01-03 08:39:46 +00:00
"target": "es2021",
2021-03-30 11:26:50 +00:00
"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",
"baseUrl": "src",
2021-03-30 11:26:50 +00:00
"paths": {
"*": ["node_modules/*"]
}
},
"include": ["src/**/*"]
2021-03-30 11:26:50 +00:00
}