houdini/tsconfig.json

20 lines
547 B
JSON
Raw Normal View History

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