mirror of
https://github.com/badgen/badgen.net.git
synced 2025-04-19 05:42:17 +03:00
* feat: new doc generator (stage 1) * feat: migrate badges to now v2 (stage 2) * chore: update build & deploy config (stage 3) * chore: address review comments * chore: cleanup files * fix: now deployment config * fix: ts config * chore: remove topbar * chore: update routes config
22 lines
416 B
JSON
22 lines
416 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"jsx": "preserve",
|
|
"target": "es2018",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"sourceMap": true,
|
|
"outDir": "dist",
|
|
"baseUrl": ".",
|
|
"lib": ["dom", "dom.iterable", "esnext"]
|
|
},
|
|
"include": [
|
|
"index.ts",
|
|
"api"
|
|
]
|
|
}
|