ens-proxy/tsconfig.json

15 lines
335 B
JSON
Raw Permalink 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,
2023-01-11 10:52:02 +01:00
"module": "CommonJS",
2022-08-22 12:53:38 +02:00
"moduleResolution": "node",
2023-01-10 17:37:31 +01: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
}