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
505 B
21 lines
505 B
4 years ago
|
{
|
||
|
"compilerOptions": {
|
||
|
"module": "es2015",
|
||
|
"target": "esnext",
|
||
|
"noImplicitAny": true,
|
||
|
"sourceMap": true,
|
||
|
"alwaysStrict": true,
|
||
|
"declaration": true,
|
||
|
"experimentalDecorators": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"importHelpers": true,
|
||
|
"noImplicitReturns": true,
|
||
|
"noImplicitThis": true,
|
||
|
"outDir": "dist/esnext",
|
||
|
"strictNullChecks": true
|
||
|
},
|
||
|
"include": [
|
||
|
"src/**/*"
|
||
|
]
|
||
|
}
|