You've already forked shenanigans-manager
mirror of
https://github.com/FullScreenShenanigans/shenanigans-manager.git
synced 2026-04-28 13:03:43 -07:00
24 lines
603 B
JSON
24 lines
603 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"experimentalDecorators": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"jsx": "react",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"pretty": true,
|
|
"strict": true,
|
|
"target": "es2015"
|
|
},
|
|
"include": [
|
|
"./src/**/*.ts",
|
|
"./src/**/*.tsx"
|
|
]
|
|
}
|