29 lines
721 B
JSON
29 lines
721 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2017",
|
|
"module": "es2015",
|
|
"moduleResolution": "node",
|
|
"lib": ["esnext.array", "esnext", "es2017", "dom"],
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"inlineSources": true,
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"outDir": "./",
|
|
// Only necessary because @types/uglify-js can't find types for source-map
|
|
"skipLibCheck": true,
|
|
"experimentalDecorators": true
|
|
},
|
|
"include": [
|
|
"custom_typings/**/*.ts",
|
|
"src/**/*.ts"
|
|
],
|
|
"exclude": []
|
|
}
|