1
0
Fork 1
mirror of https://github.com/SomboChea/ui synced 2024-04-27 07:01:37 +07:00
verdaccio-ui/tsconfig.json
2019-12-04 17:09:02 +01:00

26 lines
479 B
JSON

{
"compilerOptions": {
"skipLibCheck": true,
"target": "esnext",
"module": "commonjs",
"noImplicitAny": false,
"strict": true,
"outDir": "build",
"allowSyntheticDefaultImports": true,
"jsx": "react",
"allowJs": true,
"resolveJsonModule": true,
"checkJs": false,
"esModuleInterop": true,
},
"include": [
"src",
"types/*.d.ts",
"scripts/lib",
"node_modules/config",
],
"exclude": [
"node_modules"
]
}