Prettier had some missing extensions in the config, this commit added them, we then prettified the whole project. We ignore the `cunningham-tokens` files.
14 lines
368 B
JSON
14 lines
368 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", "**/*.stories.tsx"],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|