1
0
mirror of https://github.com/oceanprotocol-archive/squid-js.git synced 2024-02-02 15:31:51 +01:00
squid-js/tsconfig.json

25 lines
398 B
JSON
Raw Normal View History

2018-09-25 08:30:54 +02:00
{
"compilerOptions": {
"lib": [
"es6",
"es7"
],
"declaration": true,
2018-09-25 08:30:54 +02:00
"module": "commonjs",
"noImplicitAny": false,
"removeComments": true,
"preserveConstEnums": true,
"outDir": "./dist/",
"rootDir": "./src/",
"sourceMap": true
},
"include": [
"src/**/*",
"test/**/*"
2018-09-25 08:30:54 +02:00
],
"exclude": [
"node_modules",
"**/*.test.ts"
2018-09-25 08:30:54 +02:00
]
2018-09-25 09:14:01 +02:00
}