houdini/tsconfig.json

20 lines
547 B
JSON
Raw Normal View History

2018-03-29 19:10:27 +00:00
{
"compilerOptions": {
"outDir": "./target/",
2018-03-29 19:10:27 +00:00
"sourceMap": true,
"skipLibCheck": true,
2018-03-29 19:10:27 +00:00
"noImplicitAny": true,
"module": "commonjs",
"target": "es5",
"jsx": "react",
"experimentalDecorators": true,
"baseUrl": "./",
"lib": ["dom","es5", "scripthost", "es2015.promise"],
2020-05-19 19:16:53 +00:00
"paths": { "*": [ "./types/*"], "@rails/activestorage": ["./types/rails__activestorage"] },
"typeRoots" : [
"node_modules/@types",
2020-05-27 22:05:25 +00:00
"./types"],
"allowSyntheticDefaultImports": true,
"esModuleInterop":true
2018-03-29 19:10:27 +00:00
}
}