houdini/tsconfig.json
2020-05-27 17:05:25 -05:00

20 lines
No EOL
547 B
JSON

{
"compilerOptions": {
"outDir": "./target/",
"sourceMap": true,
"skipLibCheck": true,
"noImplicitAny": true,
"module": "commonjs",
"target": "es5",
"jsx": "react",
"experimentalDecorators": true,
"baseUrl": "./",
"lib": ["dom","es5", "scripthost", "es2015.promise"],
"paths": { "*": [ "./types/*"], "@rails/activestorage": ["./types/rails__activestorage"] },
"typeRoots" : [
"node_modules/@types",
"./types"],
"allowSyntheticDefaultImports": true,
"esModuleInterop":true
}
}