ens-proxy/tsconfig.json

15 lines
333 B
JSON
Raw Normal View History

2022-08-15 14:57:57 +02:00
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
2022-08-22 12:53:38 +02:00
"strict": true,
"noEmit": true,
"module": "esnext",
2022-08-22 12:53:38 +02:00
"moduleResolution": "node",
2022-08-25 16:37:06 +02:00
"isolatedModules": true,
"allowSyntheticDefaultImports": true
2022-08-15 14:57:57 +02:00
},
2022-08-22 12:53:38 +02:00
"exclude": ["node_modules"],
"include": ["**/*.ts", "**/*.tsx"]
2022-08-15 14:57:57 +02:00
}