houdini/tsconfig.json

18 lines
419 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"],
"paths": { "*": [ "./types/*"] },
"typeRoots" : [
"node_modules/@types",
"./types"]
2018-03-29 19:10:27 +00:00
}
}