Summary: Pull Request resolved: https://github.com/facebook/yoga/pull/1311 Adds some more output files to be ignored by prettier, eslint, tsconfig Reviewed By: rozele Differential Revision: D46884397 fbshipit-source-id: 69329f924cb3e949152a07d93514dc8cf8b3253a
26 lines
556 B
JSON
26 lines
556 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2018",
|
|
"module": "commonjs",
|
|
"strict": true,
|
|
"declaration": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
// TODO: moduleResolution: "nodenext" is buggy with this if the absolute
|
|
// path contains any capital letters
|
|
"forceConsistentCasingInFileNames": false,
|
|
"baseUrl": ".",
|
|
"moduleResolution": "nodenext",
|
|
"paths": {
|
|
"yoga-layout": ["src"]
|
|
}
|
|
},
|
|
"ts-node": {
|
|
"transpileOnly": true
|
|
},
|
|
"exclude": [
|
|
"binaries/**/*",
|
|
"build/**/*"
|
|
]
|
|
}
|