jcore-ui
Version:
jcore-ui - components for building an interface
52 lines • 1.29 kB
JSON
{
"compilerOptions": {
"target": "es6",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
// "resolveJsonModule": true,
// "isolatedModules": true,
"noImplicitAny": true,
// "jsx": "react",
"module" : "commonjs",
"strictNullChecks": false,
"typeRoots": [
"node_modules/@types",
"typings/**/*"
],
"noImplicitThis": true,
"rootDir": ".",
// "baseUrl": "."
"outDir": "./dist/bin",
// "outFile": "./bin/index.js",
"emitDeclarationOnly": false,
"declaration": false,
"declarationMap": false,
"sourceMap": false
},
"exclude": [
"node_modules",
"dist",
"coverage",
"jest.config.js",
"config",
"bin"
],
"include": [
// "**/*.ts",
"./typings/**/*.ts",
"./lib/**/*.ts",
"./app/**/*.ts",
"index.ts",
// "./tests/**/*.ts"
]
}