|
{ |
|
"compilerOptions": { |
|
"target": "ESNext", |
|
"useDefineForClassFields": true, |
|
"lib": ["DOM", "DOM.Iterable", "ESNext"], |
|
"types": ["vite/client"], |
|
"allowJs": false, |
|
"skipLibCheck": true, |
|
"esModuleInterop": true, |
|
"allowSyntheticDefaultImports": true, |
|
"strict": true, |
|
"forceConsistentCasingInFileNames": true, |
|
"module": "ESNext", |
|
"moduleResolution": "Node", |
|
|
|
|
|
"noUncheckedIndexedAccess": true, |
|
"strictNullChecks": true, |
|
"strictPropertyInitialization": true, |
|
"isolatedModules": true, |
|
"noEmit": true, |
|
"jsx": "react-jsx", |
|
"baseUrl": "./", |
|
"paths": { |
|
"*": ["./src/*"] |
|
} |
|
}, |
|
"include": ["src/**/*.ts", "src/**/*.tsx", "*.d.ts", ".storybook/**/*"], |
|
"exclude": ["src/services/fixtures/*", "node_modules", "dist"], |
|
"references": [{ "path": "./tsconfig.node.json" }], |
|
"ts-node": { |
|
"compilerOptions": { |
|
"jsx": "preserve", |
|
"types": ["vite/client"] |
|
}, |
|
"esm": true |
|
} |
|
} |
|
|