badgen.net/tsconfig.json

23 wiersze
419 B
JSON
Czysty Zwykły widok Historia

2019-05-13 08:56:06 +00:00
{
"compilerOptions": {
"strict": true,
2019-05-13 12:00:56 +00:00
"noImplicitAny": false,
"allowJs": true,
"skipLibCheck": true,
"jsx": "preserve",
"target": "esnext",
2019-05-13 08:56:06 +00:00
"module": "commonjs",
"moduleResolution": "node",
"esModuleInterop": true,
"sourceMap": true,
2019-06-05 06:47:05 +00:00
"outDir": "dist",
2019-05-13 08:56:06 +00:00
"baseUrl": ".",
"lib": ["dom", "esnext"]
2019-05-13 08:56:06 +00:00
},
"include": [
2019-05-14 01:15:16 +00:00
"index.ts",
"endpoints",
"types"
2019-05-13 08:56:06 +00:00
]
}