solana/explorer/tsconfig.json

23 lines
557 B
JSON
Raw Normal View History

2020-03-13 02:07:58 -07:00
{
"compilerOptions": {
"target": "es5",
2020-03-13 03:23:46 -07:00
"lib": ["dom", "dom.iterable", "esnext"],
2020-03-13 02:07:58 -07:00
"allowJs": true,
"skipLibCheck": true,
"downlevelIteration": true,
2020-03-13 02:07:58 -07:00
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"baseUrl": "src",
"noFallthroughCasesInSwitch": true
2020-03-13 02:07:58 -07:00
},
2020-03-13 03:23:46 -07:00
"include": ["src"]
2020-03-13 02:07:58 -07:00
}