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.
21 lines
400 B
21 lines
400 B
4 years ago
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "es5",
|
||
|
"lib": ["es2015"],
|
||
|
"module": "commonjs",
|
||
|
"declaration": true,
|
||
|
"rootDir": ".",
|
||
|
"strict": true,
|
||
|
"noUnusedLocals": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"noImplicitReturns": true,
|
||
|
"moduleResolution": "node",
|
||
|
"esModuleInterop": true,
|
||
|
"stripInternal": true
|
||
|
},
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
|
"test/data"
|
||
|
]
|
||
|
}
|