mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-01 03:19:20 +08:00
build: add @shared alias pointing to the shared directory
This commit is contained in:
parent
90c96a2bd7
commit
57ff186f91
2 changed files with 8 additions and 2 deletions
|
@ -17,7 +17,10 @@
|
|||
"noImplicitReturns": true,
|
||||
"noPropertyAccessFromIndexSignature": true,
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"forceConsistentCasingInFileNames": true
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"paths": {
|
||||
"@shared/*": ["../shared-types/*"]
|
||||
}
|
||||
},
|
||||
"ts-node": {
|
||||
"files": true
|
||||
|
|
|
@ -31,7 +31,10 @@
|
|||
"noPropertyAccessFromIndexSignature": true,
|
||||
"allowUnusedLabels": false,
|
||||
"allowUnreachableCode": false,
|
||||
"skipLibCheck": false
|
||||
"skipLibCheck": false,
|
||||
"paths": {
|
||||
"@shared/*": ["../shared-types/*"]
|
||||
}
|
||||
},
|
||||
"include": ["./src/**/*.ts", "../shared-types/**/*.d.ts"],
|
||||
"exclude": ["node_modules", "build", "setup-tests.ts", "**/*.spec.ts"]
|
||||
|
|
Loading…
Reference in a new issue