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

18 lines
402 B
JSON
Raw Normal View History

2019-06-15 22:44:54 +02:00
{
"compilerOptions": {
"lib": ["es6"],
"module": "commonjs",
"target": "es5",
"noImplicitAny": true,
"outDir": "build",
2019-07-21 23:50:10 +02:00
"declaration": 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,
2019-08-16 23:06:51 +02:00
"typeRoots": ["./node_modules"],
"types": []
2019-06-15 22:44:54 +02:00
},
"include": ["src/**/*"]
}