You've already forked ThingHittr
mirror of
https://github.com/FullScreenShenanigans/ThingHittr.git
synced 2026-04-28 13:00:59 -07:00
27 lines
670 B
JSON
27 lines
670 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"experimentalDecorators": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"jsx": "react",
|
|
"lib": ["dom", "es2015.collection", "es2015.promise", "es5"],
|
|
"module": "amd",
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"pretty": true,
|
|
"strictNullChecks": true,
|
|
"target": "es5"
|
|
},
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules"
|
|
],
|
|
"include": [
|
|
"./src/**/*.ts",
|
|
"./src/**/*.tsx"
|
|
]
|
|
}
|