23 lines
729 B
JSON
23 lines
729 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"declaration": true,
|
|
"downlevelIteration": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"lib": ["es2020", "dom"],
|
|
"module": "commonjs",
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"outDir": "__build__",
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"target": "es2019",
|
|
"typeRoots": ["../../node_modules/@0x/typescript-typings/types", "../../node_modules/@types"],
|
|
"useUnknownInCatchVariables": false
|
|
},
|
|
"include": ["src/**/*.ts", "test/**/*.ts"]
|
|
}
|