grid/tsconfig.json

32 lines
827 B
JSON
Raw Permalink Normal View History

2023-01-10 00:22:37 +00:00
{
"compilerOptions": {
"outDir": "./dist/",
"module": "es6",
"moduleResolution": "node",
"target": "es5",
2023-01-10 00:44:13 +00:00
"jsx": "react-jsx",
2023-01-10 00:22:37 +00:00
"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
2023-01-10 01:32:22 +00:00
},
"exclude": [
"node_modules"
],
"include": [
"src",
"image.d.ts"
]
2023-01-10 00:22:37 +00:00
}