32 lines
827 B
JSON
32 lines
827 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist/",
|
|
"module": "es6",
|
|
"moduleResolution": "node",
|
|
"target": "es5",
|
|
"jsx": "react-jsx",
|
|
"allowJs": false,
|
|
"sourceMap": true,
|
|
"experimentalDecorators": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitAny": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"strictBindCallApply": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"useUnknownInCatchVariables": true,
|
|
"alwaysStrict": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
],
|
|
"include": [
|
|
"src",
|
|
"image.d.ts"
|
|
]
|
|
}
|