metaplex/js/packages/web/tsconfig.json

25 lines
627 B
JSON
Raw Normal View History

2021-06-02 07:35:28 -07:00
{
"compilerOptions": {
"target": "es5",
2021-08-16 14:26:39 -07:00
"lib": ["dom", "dom.iterable", "esnext"],
2021-06-02 07:35:28 -07:00
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"noImplicitAny": false,
2021-06-02 07:35:28 -07:00
"resolveJsonModule": true,
"isolatedModules": true,
"downlevelIteration": true,
"noEmit": true,
2021-07-07 02:56:46 -07:00
"jsx": "preserve",
2021-08-16 14:26:39 -07:00
"typeRoots": ["../../types"]
2021-06-02 07:35:28 -07:00
},
2021-08-16 14:26:39 -07:00
"include": ["src"],
"exclude": ["node_modules"]
2021-06-02 07:35:28 -07:00
}