badgen/tsconfig.json

19 wiersze
335 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",
"sourceMap":true,
2019-10-03 04:31:17 +00:00
"declaration": true,
2019-10-03 04:08:16 +00:00
"resolveJsonModule": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true
2019-10-03 04:08:16 +00:00
},
"include": ["src"]
}