Files
yoga/javascript/tsconfig.json

23 lines
525 B
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "es2020",
"module": "esnext",
"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",
"allowImportingTsExtensions": true,
"paths": {
"yoga-layout": ["src"]
}
},
2023-10-19 20:31:55 -07:00
"include": [
"src/**/*"
]
}