29 lines
557 B
JSON
29 lines
557 B
JSON
{
|
|
"compilerOptions": {
|
|
"alwaysStrict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"inlineSourceMap": true,
|
|
"lib": [
|
|
"es2016"
|
|
],
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"outDir": "dist",
|
|
"pretty": true,
|
|
"rootDir": ".",
|
|
"skipLibCheck": true,
|
|
"strictNullChecks": true,
|
|
"target": "es5",
|
|
"typeRoots": [
|
|
"node_modules/@types"
|
|
]
|
|
},
|
|
"include": [
|
|
"lib/**/*",
|
|
"test/**/*"
|
|
]
|
|
}
|