mirror of
https://github.com/prymitive/karma
synced 2026-05-19 04:26:41 +00:00
28 lines
620 B
JSON
28 lines
620 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "src",
|
|
"target": "es5",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react"
|
|
},
|
|
"include": ["src"],
|
|
"exclude": [
|
|
"**/*.test.ts",
|
|
"**/*.test.tsx",
|
|
"**/*.stories.tsx",
|
|
"src/__mocks__/*.ts",
|
|
"src/__mocks__/**/*.ts"
|
|
]
|
|
}
|