16 lines
345 B
JSON
16 lines
345 B
JSON
{
|
|
// Common configuration for everything
|
|
// living in the "src" directory.
|
|
"extends": "../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"~/core": ["core"],
|
|
"~/core/*": ["core/*"]
|
|
}
|
|
},
|
|
"include": ["../global.d.ts", "./**/*.ts"],
|
|
"exclude": ["./**/*.test.ts"]
|
|
}
|