ente/tsconfig.json

16 lines
331 B
JSON
Raw Normal View History

2021-03-27 12:35:04 +00:00
{
2021-03-30 11:26:50 +00:00
"compilerOptions": {
"target": "es2017",
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",
2022-04-19 07:12:15 +00:00
"baseUrl": "./src",
2021-03-30 11:26:50 +00:00
"paths": {
"*": ["node_modules/*"]
}
},
2022-07-13 08:55:00 +00:00
"include": ["src/**/*"]
2021-03-30 11:26:50 +00:00
}