rigjs
Version:
A multi-repos dev tool based on yarn and git.Rigjs is intended to be the simplest way to develop,share and deliver codes between different developers or different projects.
54 lines (53 loc) • 862 B
JSON
{
"compilerOptions": {
"target": "es2015",
"module": "CommonJS",
"strict": true,
"importHelpers": true,
"moduleResolution": "node",
"esModuleInterop": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"useUnknownInCatchVariables": false,
"sourceMap": true,
"baseUrl": ".",
"resolveJsonModule": true,
"outDir": "./built",
"allowJs": true,
"types": [
"node",
"jest",
],
"paths": {
"@/*": [
"./lib/*"
],
"@root/*": [
"./*"
],
"@static/*": [
"static/*"
],
"tslib": [
"node_modules/tslib/tslib.d.ts"
]
},
"lib": [
"es2015"
]
},
"include": [
"index.ts",
"rigs/**/*.ts",
"lib/**/*.ts",
"lib/**/*.d.ts",
"lib/**/*.test.ts",
"lib/**/*.spec.ts",
"lib/**/*.js",
"test/**/*.ts",
"typings/**/*.ts",
],
"exclude": [
"node_modules"
]
}