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

24 lines
604 B
JSON
Raw Normal View History

2019-06-15 22:44:54 +02:00
{
"compilerOptions": {
"composite": true,
2019-06-15 22:44:54 +02:00
"lib": ["es6"],
"module": "ESNext",
"moduleResolution": "node",
"target": "ES6",
2019-06-15 22:44:54 +02:00
"noImplicitAny": true,
"outDir": "lib",
2019-07-21 23:50:10 +02:00
"declaration": true,
"declarationMap": true,
2019-06-15 22:44:54 +02:00
"noEmitOnError": true,
"strict": true,
2019-06-21 19:18:36 +02:00
"incremental": true,
"sourceMap": true,
"rootDir": "./src",
"esModuleInterop": true,
"importHelpers": true,
"isolatedModules": true,
"typeRoots": ["./node_modules/@types"]
2019-06-15 22:44:54 +02:00
},
"include": ["src/**/*"]
}