GenAI_Course / node_modules /msw /src /tsconfig.src.json
sam522's picture
node
d4b85c0
raw
history blame contribute delete
345 Bytes
{
// 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"]
}