mirror of
https://github.com/rive-app/rive-react.git
synced 2025-12-19 01:30:08 +08:00
22 lines
561 B
JSON
22 lines
561 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"esModuleInterop": true,
|
|
"jsx": "react",
|
|
"lib": ["esnext", "dom"],
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"outDir": "./dist",
|
|
"types": ["node", "jest", "offscreencanvas"],
|
|
"rootDir": "src",
|
|
"strict": true,
|
|
"target": "es5",
|
|
"typeRoots": ["./types", "./node_modules/@types"]
|
|
},
|
|
"include": ["src/**/*", "../examples/stories"]
|
|
}
|