badgen.net/server.tsconfig.json

22 wiersze
416 B
JSON

2019-07-12 04:26:10 +00:00
{
"compilerOptions": {
"strict": true,
"noImplicitAny": false,
"allowJs": true,
"skipLibCheck": true,
"jsx": "preserve",
"target": "es2018",
2019-07-12 04:26:10 +00:00
"module": "commonjs",
"moduleResolution": "node",
"esModuleInterop": true,
"sourceMap": true,
"outDir": "dist",
"baseUrl": ".",
2019-10-28 16:19:11 +00:00
"lib": ["dom", "dom.iterable", "esnext"]
2019-07-12 04:26:10 +00:00
},
"include": [
"index.ts",
"api"
2019-07-12 04:26:10 +00:00
]
}