wallet-core/packages/idb-bridge/tsconfig.json

25 lines
555 B
JSON
Raw Permalink Normal View History

2019-06-15 22:44:54 +02:00
{
2022-10-13 14:24:40 +02:00
"compilerOptions": {
"composite": true,
"lib": ["ES2020"],
"module": "Node16",
2022-10-13 14:24:40 +02:00
"moduleResolution": "Node16",
"target": "ES2020",
2022-10-13 14:24:40 +02:00
"allowJs": true,
"noImplicitAny": true,
"outDir": "lib",
"declaration": true,
"declarationMap": true,
"noEmitOnError": true,
"strict": true,
"incremental": true,
"sourceMap": true,
"rootDir": "./src",
"esModuleInterop": true,
"importHelpers": true,
"isolatedModules": true,
"typeRoots": ["./node_modules/@types"]
},
"include": ["src/**/*"]
2019-06-15 22:44:54 +02:00
}