@momothepug/tsmodule-alias
Version:
Nodejs module loader from Typescript path alias
21 lines (20 loc) • 462 B
JSON
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"outDir": "./",
"strict": false,
"baseUrl": "./",
"declaration": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"paths": {
"@mod": ["morefake/level/"],
"@path": ["momo/"],
"@other_one": ["momo\\momo\\momo"],
"@other": ["momo/momo"]
}
},
"include": ["./", "src/**/*"],
"exclude": ["node_modules", "dist"]
}