28 lines
634 B
JSON
28 lines
634 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"allowArbitraryExtensions": true,
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"jsx": "react-jsx",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"noImplicitOverride": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"resolveJsonModule": true,
|
|
"strict": true,
|
|
"stripInternal": true,
|
|
"target": "esnext",
|
|
"useUnknownInCatchVariables": false
|
|
},
|
|
"ts-node": {
|
|
"transpileOnly": true,
|
|
"compilerOptions": {
|
|
"module": "commonjs"
|
|
}
|
|
}
|
|
}
|