Files
yoga/javascript/tsconfig.json

28 lines
611 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"]
}
},
"ts-node": {
"transpileOnly": true,
"esm": true
},
"exclude": [
"binaries/**/*",
"build/**/*"
]
}