Revert the changes made in the d05e385 commit, it was causing IDE
warnings in stories files about source files that cannot be resolved,
but in reality Storybook really base its config on the local tsconfig.json,
so excluding stories.tsx files was just a ugly temporary fix.
14 lines
348 B
JSON
14 lines
348 B
JSON
{
|
|
"extends": "@openfun/typescript-configs/react.json",
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"paths": {
|
|
":/*": ["./src/*"]
|
|
},
|
|
"types": ["vitest/globals", "vite/client"]
|
|
},
|
|
"include": ["src", "cunningham.ts"],
|
|
"exclude": ["node_modules", "dist", "**/tokens.ts"],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|