isogit-lfs/tsconfig.json

25 lines
434 B
JSON
Raw Normal View History

2021-11-25 12:27:33 +00:00
{
2022-12-07 23:39:09 +00:00
"compilerOptions": {
2023-05-16 22:56:12 +00:00
"target": "es2015",
"lib": ["es2020", "DOM"],
2022-12-07 23:39:09 +00:00
"module": "esnext",
"moduleResolution": "node",
2021-11-25 12:27:33 +00:00
2022-12-07 23:39:09 +00:00
"strict": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
2021-11-25 12:27:33 +00:00
2022-12-07 23:39:09 +00:00
"sourceMap": true,
"inlineSources": true,
2021-11-25 12:27:33 +00:00
2022-12-07 23:39:09 +00:00
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
2021-11-25 12:27:33 +00:00
2022-12-07 23:39:09 +00:00
"newLine": "lf",
2021-11-25 12:27:33 +00:00
2023-05-16 22:30:11 +00:00
"declaration": true,
"outDir": "dist/"
2022-12-07 23:39:09 +00:00
}
2021-11-25 12:27:33 +00:00
}