You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
739 B
33 lines
739 B
|
6 years ago
|
{
|
||
|
|
"include": ["src/**/*"],
|
||
|
|
"exclude": ["node_modules/*"],
|
||
|
|
"compilerOptions": {
|
||
|
|
"rootDir": "src",
|
||
|
|
"outDir": "dist",
|
||
|
|
"declarationDir": "dist/types",
|
||
|
|
|
||
|
|
"target": "es6",
|
||
|
|
"module": "es2015",
|
||
|
|
"moduleResolution": "node",
|
||
|
|
"lib": ["es6", "dom"],
|
||
|
|
|
||
|
|
"pretty": true,
|
||
|
|
|
||
|
|
"sourceMap": true,
|
||
|
|
"alwaysStrict": true,
|
||
|
|
"removeComments": true,
|
||
|
|
|
||
|
|
"noImplicitAny": true,
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"noUnusedParameters": true,
|
||
|
|
|
||
|
|
"preserveConstEnums": true,
|
||
|
|
|
||
|
|
"declaration": true,
|
||
|
|
"declarationMap": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"allowSyntheticDefaultImports": true
|
||
|
|
}
|
||
|
|
}
|