mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
27 lines
721 B
JSON
27 lines
721 B
JSON
{
|
|
"compilerOptions": {
|
|
"alwaysStrict": true,
|
|
"sourceMap": false,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"strictPropertyInitialization": true,
|
|
"strictBindCallApply": true,
|
|
"module": "commonjs",
|
|
"jsx": "react",
|
|
"target": "es5",
|
|
"moduleResolution": "node",
|
|
"experimentalDecorators": true,
|
|
"esModuleInterop": true,
|
|
"declaration": true,
|
|
"lib": ["dom", "es2017", "es5", "es6", "es7"],
|
|
"outDir": ".",
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true
|
|
},
|
|
"exclude": ["docs/*", "webpack.config.*", "*.js", "__tests__", "examples"]
|
|
}
|