32 lines
704 B
JSON
32 lines
704 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"noUnusedLocals": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitUseStrict": true,
|
|
"removeComments": true,
|
|
"declaration": true,
|
|
"target": "es2015",
|
|
"lib": [
|
|
"dom",
|
|
"es2018"
|
|
],
|
|
"module": "commonjs",
|
|
"outDir": "./dist/",
|
|
"sourceMap": true,
|
|
"typeRoots" : [
|
|
"./node_modules/@types"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"tests/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"tests/**/*.ts"
|
|
]
|
|
}
|