ente/desktop/tsconfig.json

18 lines
430 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,
2024-03-11 12:22:35 +00:00
/* Emit the generated JS into build/app */
"outDir": "build/app",
2021-03-30 11:26:50 +00:00
"noImplicitAny": true,
"sourceMap": true,
"baseUrl": "src",
2021-03-30 11:26:50 +00:00
"paths": {
"*": ["node_modules/*"]
}
},
2024-03-11 12:22:35 +00:00
/* Transpile all ts files in src/ */
2024-03-11 11:30:34 +00:00
"include": ["src/**/*.ts"]
2021-03-30 11:26:50 +00:00
}