mirror of
https://github.com/prymitive/karma
synced 2026-05-05 03:16:51 +00:00
24 lines
592 B
JSON
24 lines
592 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "src",
|
|
"target": "es5",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": true,
|
|
"importsNotUsedAsValues": "error"
|
|
},
|
|
"include": ["src"]
|
|
}
|