badgen/tsconfig.json

22 wiersze
403 B
JSON

{
"compilerOptions": {
2022-04-30 08:10:24 +00:00
"strict": true,
"target": "es2017",
2019-10-03 04:08:16 +00:00
"module": "commonjs",
"lib": ["esnext", "dom"],
2019-10-03 04:08:16 +00:00
"rootDir": "src",
"outDir": "dist",
"sourceMap":true,
2019-10-03 04:31:17 +00:00
"declaration": true,
2019-10-03 04:08:16 +00:00
"resolveJsonModule": true,
"experimentalDecorators": true,
2022-04-30 08:10:24 +00:00
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
2019-10-03 04:08:16 +00:00
},
"include": ["src"]
}