badgen/tsconfig.json

21 wiersze
386 B
JSON
Czysty Zwykły widok Historia

{
"compilerOptions": {
"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",
2019-10-03 04:08:16 +00:00
"declaration": true,
"sourceMap":true,
"allowJs":true,
"moduleResolution":"node",
2019-10-03 04:08:16 +00:00
"resolveJsonModule": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true
2019-10-03 04:08:16 +00:00
},
"include": ["src"]
}